diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-06-30 20:38:46 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-06-30 20:38:46 -0300 |
commit | c340a4a8c7720173baa6c09253bb44cbf7b6a8c1 (patch) | |
tree | 926bf45b8dc0f16a0e64607f189dca0178d0a10a /usr | |
parent | cb42b4f795f242e9aa18951f651b878536dc4442 (diff) | |
download | pfsense-c340a4a8c7720173baa6c09253bb44cbf7b6a8c1.zip pfsense-c340a4a8c7720173baa6c09253bb44cbf7b6a8c1.tar.gz |
Review firewall_nat_1to1_edit.php
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/firewall_nat_1to1_edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/firewall_nat_1to1_edit.php b/usr/local/www/firewall_nat_1to1_edit.php index dde6e4b..5bbcb2b 100755 --- a/usr/local/www/firewall_nat_1to1_edit.php +++ b/usr/local/www/firewall_nat_1to1_edit.php @@ -89,7 +89,7 @@ if ($_POST) { /* input validation */ $reqdfields = explode(" ", "interface external internal"); - $reqdfieldsn = array(",", gettext("Interface,External subnet,Internal subnet")); + $reqdfieldsn = array(gettext("Interface"),gettext("External subnet"),gettext("Internal subnet")); do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); @@ -138,7 +138,7 @@ if ($_POST) { } } -$pgtitle = array("Firewall","NAT","1:1",gettext("Edit")); +$pgtitle = array(gettext("Firewall"),gettext("NAT"),gettext("1:1"),gettext("Edit")); include("head.inc"); ?> |