diff options
author | PiBa-NL <pba_2k3@yahoo.com> | 2014-02-24 23:40:52 +0100 |
---|---|---|
committer | PiBa-NL <pba_2k3@yahoo.com> | 2014-02-24 23:40:52 +0100 |
commit | 1bdd51eeb54147d989ebf288f6c2a1df3e49db6c (patch) | |
tree | d512f0a3cf35e6178ac2df1cbd094f56d191441c /config | |
parent | 3b2e843e625ab989c6491694f1bd7a5e895d88cc (diff) | |
download | pfsense-packages-1bdd51eeb54147d989ebf288f6c2a1df3e49db6c.tar.gz pfsense-packages-1bdd51eeb54147d989ebf288f6c2a1df3e49db6c.tar.bz2 pfsense-packages-1bdd51eeb54147d989ebf288f6c2a1df3e49db6c.zip |
haproxy-devel, don't keep reference to original variable using &
Diffstat (limited to 'config')
-rw-r--r-- | config/haproxy-devel/haproxy.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/haproxy-devel/haproxy.inc b/config/haproxy-devel/haproxy.inc index 24be5363..e7d8f420 100644 --- a/config/haproxy-devel/haproxy.inc +++ b/config/haproxy-devel/haproxy.inc @@ -898,7 +898,7 @@ function haproxy_writeconf($configpath) { $default_backend = ""; $i = 0; foreach ($bind['config'] as $frontend) { - $a_acl = &get_frontend_acls($frontend); + $a_acl = get_frontend_acls($frontend); $poolname = $frontend['backend_serverpool'] . "_" . strtolower($frontend['type']); |