summaryrefslogtreecommitdiffstats
path: root/usr/local/www/system.php
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2005-04-03 15:34:04 +0000
committerBill Marquette <billm@pfsense.org>2005-04-03 15:34:04 +0000
commit9eab73da1b61c344b094dfe14110cf567370df2c (patch)
tree5972e8169663c69d74484efc9d456c02b2d5a6ed /usr/local/www/system.php
parenta21ff5bd9889abe7823d46fc5e1ab0be37925893 (diff)
downloadpfsense-9eab73da1b61c344b094dfe14110cf567370df2c.zip
pfsense-9eab73da1b61c344b094dfe14110cf567370df2c.tar.gz
Let the update_if_changed() force passing as reference instead of relying on our memory and testing abilities
Diffstat (limited to 'usr/local/www/system.php')
-rwxr-xr-xusr/local/www/system.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/usr/local/www/system.php b/usr/local/www/system.php
index 29eabb1..bebed65 100755
--- a/usr/local/www/system.php
+++ b/usr/local/www/system.php
@@ -107,16 +107,16 @@ if ($_POST) {
}
if (!$input_errors) {
- update_if_changed("hostname", &$config['system']['hostname'], strtolower($_POST['hostname']));
- update_if_changed("domain", &$config['system']['domain'], strtolower($_POST['domain']));
- update_if_changed("username", &$config['system']['username'], $_POST['username']);
+ update_if_changed("hostname", $config['system']['hostname'], strtolower($_POST['hostname']));
+ update_if_changed("domain", $config['system']['domain'], strtolower($_POST['domain']));
+ update_if_changed("username", $config['system']['username'], $_POST['username']);
- if (update_if_changed("webgui protocol", &$config['system']['webgui']['protocol'], $pconfig['webguiproto']) || update_if_changed("webgui port", &$config['system']['webgui']['port'], $pconfig['webguiport']))
+ if (update_if_changed("webgui protocol", $config['system']['webgui']['protocol'], $pconfig['webguiproto']) || update_if_changed("webgui port", $config['system']['webgui']['port'], $pconfig['webguiport']))
$restart_webgui = true;
- update_if_changed("timezone", &$config['system']['timezone'], $_POST['timezone']);
- update_if_changed("NTP servers", &$config['system']['timeservers'], strtolower($_POST['timeservers']));
- update_if_changed("NTP update interval", &$config['system']['time-update-interval'], $_POST['timeupdateinterval']);
+ update_if_changed("timezone", $config['system']['timezone'], $_POST['timezone']);
+ update_if_changed("NTP servers", $config['system']['timeservers'], strtolower($_POST['timeservers']));
+ update_if_changed("NTP update interval", $config['system']['time-update-interval'], $_POST['timeupdateinterval']);
/* XXX - billm: these still need updating after figuring out how to check if they actually changed */
unset($config['system']['dnsserver']);
OpenPOWER on IntegriCloud