aboutsummaryrefslogtreecommitdiffstats
path: root/config/haproxy-legacy/haproxy_global.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2014-04-10 16:31:57 -0400
committerjim-p <jimp@pfsense.org>2014-04-10 16:31:57 -0400
commit0fea430100e63268f0dc313061a713fe114c7c59 (patch)
tree195c25cd40e51f4256865af3917f84f2a1a7c9bf /config/haproxy-legacy/haproxy_global.php
parent8869c3d78abf2bf7e72fe079ed457c28f3f8edab (diff)
downloadpfsense-packages-0fea430100e63268f0dc313061a713fe114c7c59.tar.gz
pfsense-packages-0fea430100e63268f0dc313061a713fe114c7c59.tar.bz2
pfsense-packages-0fea430100e63268f0dc313061a713fe114c7c59.zip
Fix a whole bunch of invalid version tests.
Diffstat (limited to 'config/haproxy-legacy/haproxy_global.php')
-rwxr-xr-xconfig/haproxy-legacy/haproxy_global.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/haproxy-legacy/haproxy_global.php b/config/haproxy-legacy/haproxy_global.php
index f88f1cc5..509fdfe2 100755
--- a/config/haproxy-legacy/haproxy_global.php
+++ b/config/haproxy-legacy/haproxy_global.php
@@ -81,8 +81,8 @@ $pconfig['remotesyslog'] = $config['installedpackages']['haproxy']['remotesyslog
$pconfig['advanced'] = base64_decode($config['installedpackages']['haproxy']['advanced']);
$pconfig['nbproc'] = $config['installedpackages']['haproxy']['nbproc'];
-$pfSversion = str_replace("\n", "", file_get_contents("/etc/version"));
-if(strstr($pfSversion, "1.2"))
+$pf_version=substr(trim(file_get_contents("/etc/version")),0,3);
+if ($pf_version < 2.0)
$one_two = true;
$pgtitle = "Services: HAProxy: Settings";