diff options
author | jim-p <jimp@pfsense.org> | 2014-05-09 14:46:24 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-05-09 14:46:24 -0400 |
commit | 173c5007b5f863fb642bc86bf906c9eb80ac32e7 (patch) | |
tree | 0e2c2f559168c68407ee8b9a23989bb3451e35cb /config/squidGuard/squidguard_default.xml | |
parent | b0edfbc11834ad9f197eb40730660aee84b8f229 (diff) | |
download | pfsense-packages-173c5007b5f863fb642bc86bf906c9eb80ac32e7.tar.gz pfsense-packages-173c5007b5f863fb642bc86bf906c9eb80ac32e7.tar.bz2 pfsense-packages-173c5007b5f863fb642bc86bf906c9eb80ac32e7.zip |
Fix call-time pass-by-reference in Squidguard, bump
Diffstat (limited to 'config/squidGuard/squidguard_default.xml')
-rw-r--r-- | config/squidGuard/squidguard_default.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/squidGuard/squidguard_default.xml b/config/squidGuard/squidguard_default.xml index 01380ea5..4a03c2b6 100644 --- a/config/squidGuard/squidguard_default.xml +++ b/config/squidGuard/squidguard_default.xml @@ -134,10 +134,10 @@ </field> </fields> <custom_php_validation_command> - squidguard_validate_acl(&$_POST, &$input_errors); + squidguard_validate_acl($_POST, $input_errors); </custom_php_validation_command> <custom_php_command_before_form> - squidguard_before_form_acl(&$pkg, false); + squidguard_before_form_acl($pkg, false); </custom_php_command_before_form> <custom_php_after_form_command> squidGuard_print_javascript(); |