mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Removed if($instpkg['name']) it hid FreeSWITCH package despite name having a value in the config.
This commit is contained in:
parent
9875b318a7
commit
a848d6c27c
@ -81,9 +81,9 @@ include("head.inc");
|
||||
if(is_array($config['installedpackages']['package'])):
|
||||
|
||||
$instpkgs = array();
|
||||
foreach($config['installedpackages']['package'] as $instpkg)
|
||||
if($instpkg['name'])
|
||||
$instpkgs[] = $instpkg['name'];
|
||||
foreach($config['installedpackages']['package'] as $instpkg) {
|
||||
$instpkgs[] = $instpkg['name'];
|
||||
}
|
||||
asort($instpkgs);
|
||||
|
||||
foreach ($instpkgs as $index => $pkgname):
|
||||
|
||||
Loading…
Reference in New Issue
Block a user