|
From: Jonathan H. <the...@us...> - 2002-03-08 19:48:46
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv12511
Modified Files:
install.php
Log Message:
Well poop... Fix for bug #527235... /me goes off and slaps himself..
Index: install.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/install.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -r1.32 -r1.33
*** install.php 6 Mar 2002 21:58:49 -0000 1.32
--- install.php 8 Mar 2002 19:48:42 -0000 1.33
***************
*** 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'] ))
{
$instruction_text = $lang['Password_mismatch'] . '<br />' . $instruction_text;
|