From 6066b8a5b0f66a54613bc3c307f7fe7b729cdd4b Mon Sep 17 00:00:00 2001 From: dougk_ff7 Date: Mon, 18 Mar 2002 15:21:10 +0000 Subject: [PATCH] Fixes a bug in install.php, accidentally added "The passwords do not match" in any case. git-svn-id: file:///svn/phpbb/trunk@2312 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 e33bc56ae0..b4d09a65f6 100644 --- a/phpBB/install.php +++ b/phpBB/install.php @@ -516,7 +516,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']) && !empty($dbhost))) + if( (($HTTP_POST_VARS['admin_pass1'] != $HTTP_POST_VARS['admin_pass2']) && $install_step != '0') || (empty($HTTP_POST_VARS['admin_pass1']) && !empty($dbhost))) { $instruction_text = $lang['Password_mismatch'] . '
' . $instruction_text; }