diff options
author | jim-p <jimp@pfsense.org> | 2014-05-09 14:53:41 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-05-16 15:46:12 -0400 |
commit | 7051ab51a12cc3b94adb987d99a04126dd67b3a7 (patch) | |
tree | 29eb5601987f78c718e2e5783f514812137512ea /config/haproxy/haproxy_global.php | |
parent | 1a20fc6d045ab53152605bbc34f1df2f64815e78 (diff) | |
download | pfsense-packages-7051ab51a12cc3b94adb987d99a04126dd67b3a7.tar.gz pfsense-packages-7051ab51a12cc3b94adb987d99a04126dd67b3a7.tar.bz2 pfsense-packages-7051ab51a12cc3b94adb987d99a04126dd67b3a7.zip |
Fix call-time pass-by-reference in haproxy
Diffstat (limited to 'config/haproxy/haproxy_global.php')
-rwxr-xr-x | config/haproxy/haproxy_global.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/haproxy/haproxy_global.php b/config/haproxy/haproxy_global.php index 16f5152d..40b5cd90 100755 --- a/config/haproxy/haproxy_global.php +++ b/config/haproxy/haproxy_global.php @@ -59,7 +59,11 @@ if ($_POST) { if ($_POST['carpdev'] == "disabled") unset($_POST['carpdev']); - do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); + $pf_version=substr(trim(file_get_contents("/etc/version")),0,3); + if ($pf_version < 2.1) + $input_errors = eval('do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); return $input_errors;'); + else + do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors); if ($_POST['maxconn'] && (!is_numeric($_POST['maxconn']))) $input_errors[] = "The maximum number of connections should be numeric."; |