From 6fb95fa2459f78cf5aefca1bd6665ea6226699a8 Mon Sep 17 00:00:00 2001 From: heper Date: Wed, 30 Dec 2015 12:40:12 +0100 Subject: [PATCH] Fix typo password confirm https://forum.pfsense.org/index.php?topic=104629.0 --- src/usr/local/www/interfaces.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usr/local/www/interfaces.php b/src/usr/local/www/interfaces.php index db69970255..0ad0958cc9 100644 --- a/src/usr/local/www/interfaces.php +++ b/src/usr/local/www/interfaces.php @@ -952,7 +952,7 @@ if ($_POST['apply']) { $input_errors[] = gettext("PPP Password and confirmed password must match!"); } - if ($_POST['pppoe_password'] != $_POST['ppoep_password_confirm']) { + if ($_POST['pppoe_password'] != $_POST['pppoe_password_confirm']) { $input_errors[] = gettext("PPPoE Password and confirmed password must match!"); }