|
From: Jonathan H. <the...@us...> - 2002-03-11 21:55:24
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv7226
Modified Files:
install.php
Log Message:
Fix for #527628 .. D@mn me and my stupiddity...
Index: install.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/install.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -r1.34 -r1.35
*** install.php 8 Mar 2002 21:05:16 -0000 1.34
--- install.php 11 Mar 2002 21:55:20 -0000 1.35
***************
*** 515,519 ****
$instruction_text = $lang['Inst_Step_0'];
! 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;
--- 515,519 ----
$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;
|