mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Really show all items
This commit is contained in:
parent
3244aa2112
commit
eef938b5c0
@ -86,8 +86,9 @@ function spit_out_select_items($area, $showall) {
|
||||
$select = "<select name=\"{$area}\">\n";
|
||||
$select .= "<option VALUE=\"\">ALL</option>";
|
||||
|
||||
if($showall)
|
||||
$select .= "<option value='{$area}'>{$areaname}</option>\n";
|
||||
if($showall == true)
|
||||
foreach($areas as $area => $areaname)
|
||||
$select .= "<option value='{$area}'>{$areaname}</option>\n";
|
||||
else
|
||||
foreach($areas as $area => $areaname)
|
||||
if(check_and_returnif_section_exists($area) == true)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user