diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-09-12 11:28:14 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-09-12 11:28:14 -0300 |
commit | 1e9b461124a435fe64c62d065d09b01e1ca368e8 (patch) | |
tree | 5c6a4f802cf9122bfafed4dd787cce03c0a871e6 /usr/local/www/system.php | |
parent | a413e74379ceec27b9379d0537862d84bb86fe97 (diff) | |
download | pfsense-1e9b461124a435fe64c62d065d09b01e1ca368e8.zip pfsense-1e9b461124a435fe64c62d065d09b01e1ca368e8.tar.gz |
Remove call-time pass by reference for do_input_validation, helps ticket #2565
Diffstat (limited to 'usr/local/www/system.php')
-rwxr-xr-x | usr/local/www/system.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/system.php b/usr/local/www/system.php index d27637c..2cbdccf 100755 --- a/usr/local/www/system.php +++ b/usr/local/www/system.php @@ -106,7 +106,7 @@ if ($_POST) { $reqdfields = explode(" ", "hostname domain"); $reqdfieldsn = array(gettext("Hostname"),gettext("Domain")); - do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); + do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors); if ($_POST['hostname'] && !is_hostname($_POST['hostname'])) { $input_errors[] = gettext("The hostname may only contain the characters a-z, 0-9 and '-'."); |