summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system.php
diff options
context:
space:
mode:
authorJared Dillard <jdillard@netgate.com>2015-11-24 13:03:15 -0600
committerJared Dillard <jdillard@netgate.com>2015-11-24 13:03:22 -0600
commita8ddecc1db0e09911f3a31b16292c562f5f8d464 (patch)
tree88d0de349246b69fc0bed27afd0ec820c6143dcb /src/usr/local/www/system.php
parent1ee99ee8e23cc46afc7b81e64ed2f6135db33b6a (diff)
downloadpfsense-a8ddecc1db0e09911f3a31b16292c562f5f8d464.zip
pfsense-a8ddecc1db0e09911f3a31b16292c562f5f8d464.tar.gz
comment out fixed navbar option for now
Diffstat (limited to 'src/usr/local/www/system.php')
-rw-r--r--src/usr/local/www/system.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/usr/local/www/system.php b/src/usr/local/www/system.php
index 3f10473..de3e354 100644
--- a/src/usr/local/www/system.php
+++ b/src/usr/local/www/system.php
@@ -89,7 +89,7 @@ $pconfig['timezone'] = $config['system']['timezone'];
$pconfig['timeservers'] = $config['system']['timeservers'];
$pconfig['language'] = $config['system']['language'];
$pconfig['webguicss'] = $config['system']['webgui']['webguicss'];
-$pconfig['webguifixedmenu'] = $config['system']['webgui']['webguifixedmenu'];
+//$pconfig['webguifixedmenu'] = $config['system']['webgui']['webguifixedmenu'];
$pconfig['dnslocalhost'] = isset($config['system']['dnslocalhost']);
if (!$pconfig['timezone']) {
@@ -143,13 +143,13 @@ if ($_POST) {
} else {
unset($config['system']['webgui']['webguicss']);
}
-
+ /*
if ($_POST['webguifixedmenu']) {
$config['system']['webgui']['webguifixedmenu'] = $_POST['webguifixedmenu'];
} else {
unset($config['system']['webgui']['webguifixedmenu']);
}
-
+ */
if ($_POST['hostname']) {
if (!is_hostname($_POST['hostname'])) {
$input_errors[] = gettext("The hostname can only contain the characters A-Z, 0-9 and '-'. It may not start or end with '-'.");
@@ -478,14 +478,14 @@ $section->addInput(new Form_Select(
$pconfig['webguicss'],
$csslist
))->setHelp("Choose an alternative css file (if installed) to change the appearance of the Web configurator. css files are located in /usr/local/www/bootstrap/css");
-
+/*
$section->addInput(new Form_Select(
'webguifixedmenu',
'Menu',
$pconfig['webguifixedmenu'],
["" => "Scrolls with page", "fixed" => "Fixed (Remains visible at top of page)"]
));
-
+*/
$form->add($section);
print $form;
OpenPOWER on IntegriCloud