diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-06-20 14:27:25 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-06-20 14:27:25 -0300 |
commit | 979db1fb94648714514fe2322597eb82c531645f (patch) | |
tree | e098a71537a79d178fd2d1b4fb406eae5c07bb28 /config/sarg/sarg_schedule.xml | |
parent | a3e9d7da81031d5cdf72c0d534dac47695323869 (diff) | |
download | pfsense-packages-979db1fb94648714514fe2322597eb82c531645f.tar.gz pfsense-packages-979db1fb94648714514fe2322597eb82c531645f.tar.bz2 pfsense-packages-979db1fb94648714514fe2322597eb82c531645f.zip |
Remove call-time pass by reference since sarg_validate_input() has the reference on its prototype
Diffstat (limited to 'config/sarg/sarg_schedule.xml')
-rw-r--r-- | config/sarg/sarg_schedule.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/sarg/sarg_schedule.xml b/config/sarg/sarg_schedule.xml index 07e24d5c..6080e530 100644 --- a/config/sarg/sarg_schedule.xml +++ b/config/sarg/sarg_schedule.xml @@ -216,7 +216,7 @@ <custom_php_command_before_form> </custom_php_command_before_form> <custom_php_validation_command> - sarg_validate_input($_POST, &$input_errors); + sarg_validate_input($_POST, $input_errors); </custom_php_validation_command> <custom_delete_php_command> sync_package_sarg(); |