diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-06-20 12:54:37 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-06-20 12:54:37 -0300 |
commit | 0e308ae3683406ea0560fd2211093fb35b014296 (patch) | |
tree | af8ef65ba41a3d7f853a502fd693baec4a63935b /config/mailscanner/mailscanner_alerts.xml | |
parent | b99aae7aa74edd45f65661940bd8b52d67b9e178 (diff) | |
download | pfsense-packages-0e308ae3683406ea0560fd2211093fb35b014296.tar.gz pfsense-packages-0e308ae3683406ea0560fd2211093fb35b014296.tar.bz2 pfsense-packages-0e308ae3683406ea0560fd2211093fb35b014296.zip |
Remove call-time pass by reference since mailscanner_validate_input() has the reference on its prototype
Diffstat (limited to 'config/mailscanner/mailscanner_alerts.xml')
-rw-r--r-- | config/mailscanner/mailscanner_alerts.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/mailscanner/mailscanner_alerts.xml b/config/mailscanner/mailscanner_alerts.xml index 9d80bae6..ddc1112b 100644 --- a/config/mailscanner/mailscanner_alerts.xml +++ b/config/mailscanner/mailscanner_alerts.xml @@ -150,7 +150,7 @@ mailscanner_php_deinstall_command(); </custom_php_deinstall_command> <custom_php_validation_command> - mailscanner_validate_input($_POST, &$input_errors); + mailscanner_validate_input($_POST, $input_errors); </custom_php_validation_command> <custom_php_resync_config_command> sync_package_mailscanner(); |