summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/interfaces.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2015-09-22 07:28:24 +0545
committerPhil Davis <phil.davis@inf.org>2015-09-22 07:28:24 +0545
commitca28c12c49aa7dc2f54cd78288c1a8b88ecafdcc (patch)
treea6b6528320fcb44278980d50b6990f47c02b6c51 /src/usr/local/www/interfaces.php
parent1f1cd32f17c8509811ab0ee00d6ffccee064cd51 (diff)
downloadpfsense-ca28c12c49aa7dc2f54cd78288c1a8b88ecafdcc.zip
pfsense-ca28c12c49aa7dc2f54cd78288c1a8b88ecafdcc.tar.gz
Fix pptp_remote0 var name
I missed one of these in all the manual integration. Commit https://github.com/pfsense/pfsense/commit/66fd7b47679187ddcfaf5852a55b2af15394f341 had this error.
Diffstat (limited to 'src/usr/local/www/interfaces.php')
-rw-r--r--src/usr/local/www/interfaces.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/interfaces.php b/src/usr/local/www/interfaces.php
index c3714ab..4f849f0 100644
--- a/src/usr/local/www/interfaces.php
+++ b/src/usr/local/www/interfaces.php
@@ -608,7 +608,7 @@ if ($_POST['apply']) {
$reqdfields = explode(" ", "pptp_username pptp_password pptp_local0 pptp_subnet0 pptp_remote0 pptp_dialondemand pptp_idletimeout");
$reqdfieldsn = array(gettext("PPTP username"), gettext("PPTP password"), gettext("PPTP local IP address"), gettext("PPTP subnet"), gettext("PPTP remote IP address"), gettext("Dial on demand"), gettext("Idle timeout value"));
} else {
- $reqdfields = explode(" ", "pptp_username pptp_password pptp_local0 pptp_subnet0 pptp_remote");
+ $reqdfields = explode(" ", "pptp_username pptp_password pptp_local0 pptp_subnet0 pptp_remote0");
$reqdfieldsn = array(gettext("PPTP username"), gettext("PPTP password"), gettext("PPTP local IP address"), gettext("PPTP subnet"), gettext("PPTP remote IP address"));
}
do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);
OpenPOWER on IntegriCloud