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.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.xml')
-rw-r--r-- | config/squidGuard/squidguard.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/squidGuard/squidguard.xml b/config/squidGuard/squidguard.xml index ee7302f4..62882539 100644 --- a/config/squidGuard/squidguard.xml +++ b/config/squidGuard/squidguard.xml @@ -6,7 +6,7 @@ <requirements>Describe your package requirements here</requirements> <faq>Currently there are no FAQ items provided.</faq> <name>squidguardgeneral</name> - <version>1.4_4 pkg v.1.9.3</version> + <version>1.4_4 pkg v.1.9.6</version> <title>Proxy filter SquidGuard: General settings</title> <include_file>/usr/local/pkg/squidguard.inc</include_file> <!-- Installation --> @@ -239,10 +239,10 @@ </fields> <custom_add_php_command/> <custom_php_validation_command> - squidguard_validate(&$_POST, &$input_errors); + squidguard_validate($_POST, $input_errors); </custom_php_validation_command> <custom_php_command_before_form> - squidguard_before_form(&$pkg); + squidguard_before_form($pkg); </custom_php_command_before_form> <custom_php_after_form_command> squidGuard_print_javascript(); |