From bf3871c69811e80116ada5134f73bea88a978e03 Mon Sep 17 00:00:00 2001 From: the_systech <the_systech@users.sourceforge.net> Date: Fri, 8 Mar 2002 19:48:42 +0000 Subject: [PATCH] Well poop... Fix for bug #527235... /me goes off and slaps himself.. git-svn-id: file:///svn/phpbb/trunk@2283 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/install.php b/phpBB/install.php index 27bff21ebe..0a9e947289 100644 --- a/phpBB/install.php +++ b/phpBB/install.php @@ -514,7 +514,7 @@ else if( ( empty($install_step) || $admin_pass1 != $admin_pass2 || empty($admin_ // $instruction_text = $lang['Inst_Step_0']; - if( ($HTTP_POST_VARS['admin_pass1'] != $HTTP_POST_VARS['admin_pass2']) || empty($HTTP_POST_VARS['admin_pass1'] ) + if( ($HTTP_POST_VARS['admin_pass1'] != $HTTP_POST_VARS['admin_pass2']) || empty($HTTP_POST_VARS['admin_pass1'] )) { $instruction_text = $lang['Password_mismatch'] . '<br />' . $instruction_text; }