diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-12-28 17:37:33 -0500 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-12-28 17:37:33 -0500 |
commit | fe953aeb3c27e901518a0e6f37b14780020d0fc9 (patch) | |
tree | 5a166d9f24215b9dcffe758b2f8d6c85e9203b84 /config/haproxy/haproxy_global.php | |
parent | 0cf6c383af539c22684c1a4769cfcc6008ba4e58 (diff) | |
download | pfsense-packages-fe953aeb3c27e901518a0e6f37b14780020d0fc9.tar.gz pfsense-packages-fe953aeb3c27e901518a0e6f37b14780020d0fc9.tar.bz2 pfsense-packages-fe953aeb3c27e901518a0e6f37b14780020d0fc9.zip |
Use base64encode() and base64decode()
Diffstat (limited to 'config/haproxy/haproxy_global.php')
-rwxr-xr-x | config/haproxy/haproxy_global.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/haproxy/haproxy_global.php b/config/haproxy/haproxy_global.php index 0f5a5ee8..9db0c216 100755 --- a/config/haproxy/haproxy_global.php +++ b/config/haproxy/haproxy_global.php @@ -93,7 +93,7 @@ $pconfig['synchost1'] = $config['installedpackages']['haproxy']['synchost1']; $pconfig['synchost2'] = $config['installedpackages']['haproxy']['synchost2']; $pconfig['synchost3'] = $config['installedpackages']['haproxy']['synchost3']; $pconfig['remotesyslog'] = $config['installedpackages']['haproxy']['remotesyslog']; -$pconfig['advanced'] = $config['installedpackages']['haproxy']['advanced']; +$pconfig['advanced'] = base64decode($config['installedpackages']['haproxy']['advanced']); $pfSversion = str_replace("\n", "", file_get_contents("/etc/version")); if(strstr($pfSversion, "1.2")) |