diff options
author | Phil Davis <phil.davis@inf.org> | 2015-07-13 00:16:01 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2015-07-13 00:16:01 +0545 |
commit | e2db25ccd97644e933a5e87f0129fc6bdddc2968 (patch) | |
tree | 5290550927d8c4a06adf7ce74a44e686c963d431 /usr | |
parent | fd29caa1c8bc3aa547c50e4842aecd7314cc8d89 (diff) | |
download | pfsense-e2db25ccd97644e933a5e87f0129fc6bdddc2968.zip pfsense-e2db25ccd97644e933a5e87f0129fc6bdddc2968.tar.gz |
Interfaces GIF Edit fix do_input_validation
Make the required fields be correct and match thier text names, which should each have their own gettext() cal so as to build a proper array at line 81. Basically it was all broken and the errors displayed when field/s were left empty were rubbish.
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/interfaces_gif_edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/interfaces_gif_edit.php b/usr/local/www/interfaces_gif_edit.php index 76a24ed..7a9dc6d 100644 --- a/usr/local/www/interfaces_gif_edit.php +++ b/usr/local/www/interfaces_gif_edit.php @@ -77,8 +77,8 @@ if ($_POST) { $pconfig = $_POST; /* input validation */ - $reqdfields = explode(" ", "if tunnel-remote-addr tunnel-remote-net tunnel-local-addr"); - $reqdfieldsn = array(gettext("Parent interface,Local address, Remote tunnel address, Remote tunnel network, Local tunnel address")); + $reqdfields = explode(" ", "if remote-addr tunnel-local-addr tunnel-remote-addr tunnel-remote-net"); + $reqdfieldsn = array(gettext("Parent interface"), gettext("gif remote address"), gettext("gif tunnel local address"), gettext("gif tunnel remote address"), gettext("gif tunnel remote netmask")); do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors); |