diff options
author | jim-p <jimp@pfsense.org> | 2014-05-07 16:26:11 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-05-07 16:26:11 -0400 |
commit | 05b0510a62bcc1da9841e981a52212477ad01c0e (patch) | |
tree | d0ae4df9635011240c9c808882b358cb2f0f56cd /config/havp/havp_avset.xml | |
parent | 7d06b83962bef36aa6c33c748724a85b294964e2 (diff) | |
download | pfsense-packages-05b0510a62bcc1da9841e981a52212477ad01c0e.tar.gz pfsense-packages-05b0510a62bcc1da9841e981a52212477ad01c0e.tar.bz2 pfsense-packages-05b0510a62bcc1da9841e981a52212477ad01c0e.zip |
Fix call-time pass-by-reference in HAVP, bump
Diffstat (limited to 'config/havp/havp_avset.xml')
-rw-r--r-- | config/havp/havp_avset.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/havp/havp_avset.xml b/config/havp/havp_avset.xml index 3cea9b76..3d4372f4 100644 --- a/config/havp/havp_avset.xml +++ b/config/havp/havp_avset.xml @@ -92,10 +92,10 @@ </field> </fields> <custom_php_command_before_form> - havp_before_form(&$pkg); + havp_before_form($pkg); </custom_php_command_before_form> <custom_php_validation_command> - havp_validate_settings($_POST, &$input_errors); + havp_validate_settings($_POST, $input_errors); </custom_php_validation_command> <custom_php_resync_config_command> havp_avset_resync(); |