|
From: Doug K. <dou...@us...> - 2002-03-18 15:21:15
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv5046
Modified Files:
install.php
Log Message:
Fixes a bug in install.php, accidentally added "The passwords do not match" in any case.
Index: install.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/install.php,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -r1.36 -r1.37
*** install.php 18 Mar 2002 13:35:42 -0000 1.36
--- install.php 18 Mar 2002 15:21:10 -0000 1.37
***************
*** 517,521 ****
$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)))
{
$instruction_text = $lang['Password_mismatch'] . '<br />' . $instruction_text;
--- 517,521 ----
$instruction_text = $lang['Inst_Step_0'];
! 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;
|