diff options
author | Renato Botelho <garga@FreeBSD.org> | 2014-06-20 12:53:06 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2014-06-20 12:53:06 -0300 |
commit | b99aae7aa74edd45f65661940bd8b52d67b9e178 (patch) | |
tree | 604ea7b3945a6ad717655e3d701982783ed9620d /config/dansguardian/dansguardian_ldap.xml | |
parent | e20d97bf4ff8297e4c8551f30294481ba5ba4945 (diff) | |
download | pfsense-packages-b99aae7aa74edd45f65661940bd8b52d67b9e178.tar.gz pfsense-packages-b99aae7aa74edd45f65661940bd8b52d67b9e178.tar.bz2 pfsense-packages-b99aae7aa74edd45f65661940bd8b52d67b9e178.zip |
Remove call-time pass by reference since dansguardian_validate_input() has the reference on its prototype
Diffstat (limited to 'config/dansguardian/dansguardian_ldap.xml')
-rwxr-xr-x | config/dansguardian/dansguardian_ldap.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/dansguardian/dansguardian_ldap.xml b/config/dansguardian/dansguardian_ldap.xml index 4c2b60f7..5876bc65 100755 --- a/config/dansguardian/dansguardian_ldap.xml +++ b/config/dansguardian/dansguardian_ldap.xml @@ -164,9 +164,9 @@ dansguardian_php_deinstall_command(); </custom_php_deinstall_command> <custom_php_validation_command> - dansguardian_validate_input($_POST, &$input_errors); + dansguardian_validate_input($_POST, $input_errors); </custom_php_validation_command> <custom_php_resync_config_command> sync_package_dansguardian(); </custom_php_resync_config_command> -</packagegui>
\ No newline at end of file +</packagegui> |