Remove no-op code

See https://redmine.pfsense.org/issues/7889 for related discussion
This commit is contained in:
doktornotor 2017-09-28 15:26:47 +02:00 committed by GitHub
parent 5f63cb40ca
commit cbbb8fdb62

View File

@ -190,9 +190,6 @@ if ($pkg['tabs'] != "") {
} else {
$active = false;
}
if (isset($tab['no_drop_down'])) {
$no_drop_down = true;
}
$urltmp = "";
if ($tab['url'] != "") {
$urltmp = $tab['url'];
@ -225,7 +222,7 @@ if ($pkg['tabs'] != "") {
include("head.inc");
if (isset($tab_array)) {
foreach ($tab_array as $tabid => $tab) {
display_top_tabs($tab); //, $no_drop_down, $tabid);
display_top_tabs($tab);
}
}