mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Merge pull request #534 from laf/issue-laf-135
Fixes bug that stops search box for ports and devices to be shown
This commit is contained in:
@ -118,7 +118,7 @@ foreach ($menu_options as $option => $text)
|
||||
print_optionbar_end();
|
||||
print_optionbar_start();
|
||||
|
||||
if(isset($vars['searchbar']) && $vars['searchbar'] != "hide")
|
||||
if((isset($vars['searchbar']) && $vars['searchbar'] != "hide") || !isset($vars['searchbar']))
|
||||
{
|
||||
|
||||
?>
|
||||
|
@ -84,7 +84,7 @@ echo('</div>');
|
||||
print_optionbar_end();
|
||||
print_optionbar_start();
|
||||
|
||||
if(isset($vars['searchbar']) && $vars['searchbar'] != "hide")
|
||||
if((isset($vars['searchbar']) && $vars['searchbar'] != "hide") || !isset($vars['searchbar']))
|
||||
{
|
||||
|
||||
?>
|
||||
|
Reference in New Issue
Block a user