diff options
author | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-06-29 21:00:23 -0300 |
---|---|---|
committer | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-06-29 21:00:23 -0300 |
commit | 9d8eeb2f01829e17c25fafd04420f5c04c917698 (patch) | |
tree | 56f50b6c0d97f7d30755656cc2acb01f320e5f04 /usr/local/www/diag_ping.php | |
parent | 5f92825459b10647296f6ab40803f2d776336fd2 (diff) | |
download | pfsense-9d8eeb2f01829e17c25fafd04420f5c04c917698.zip pfsense-9d8eeb2f01829e17c25fafd04420f5c04c917698.tar.gz |
Fixing syntax errors
Diffstat (limited to 'usr/local/www/diag_ping.php')
-rwxr-xr-x | usr/local/www/diag_ping.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/diag_ping.php b/usr/local/www/diag_ping.php index a7bce2e..a814f2c 100755 --- a/usr/local/www/diag_ping.php +++ b/usr/local/www/diag_ping.php @@ -52,7 +52,7 @@ if ($_POST || $_REQUEST['host']) { /* input validation */ $reqdfields = explode(" ", "host count"); - $reqdfieldsn = array(",", gettext("Host"),gettext("Count")); + $reqdfieldsn = array(gettext("Host"),gettext("Count")); do_input_validation($_REQUEST, $reqdfields, $reqdfieldsn, &$input_errors); if (($_REQUEST['count'] < 1) || ($_REQUEST['count'] > MAX_COUNT)) { |