diff options
| author | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2002-03-18 15:21:10 +0000 |
|---|---|---|
| committer | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2002-03-18 15:21:10 +0000 |
| commit | 6066b8a5b0f66a54613bc3c307f7fe7b729cdd4b (patch) | |
| tree | 636894df188d1c8162b1205d83f52282028fbd4d /phpBB | |
| parent | b2d87a50218b88efd16da65f814297baa9b06df9 (diff) | |
| download | forums-6066b8a5b0f66a54613bc3c307f7fe7b729cdd4b.tar forums-6066b8a5b0f66a54613bc3c307f7fe7b729cdd4b.tar.gz forums-6066b8a5b0f66a54613bc3c307f7fe7b729cdd4b.tar.bz2 forums-6066b8a5b0f66a54613bc3c307f7fe7b729cdd4b.tar.xz forums-6066b8a5b0f66a54613bc3c307f7fe7b729cdd4b.zip | |
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
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
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'] . '<br />' . $instruction_text; } |
