aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2002-03-08 19:48:42 +0000
committerthe_systech <the_systech@users.sourceforge.net>2002-03-08 19:48:42 +0000
commitbf3871c69811e80116ada5134f73bea88a978e03 (patch)
treeb6fa9ef263b75d29598f6fa771bdb5d92b40aa9a /phpBB
parent3a27b7a4d4671e2cfdf57467611abd6c6950b75d (diff)
downloadforums-bf3871c69811e80116ada5134f73bea88a978e03.tar
forums-bf3871c69811e80116ada5134f73bea88a978e03.tar.gz
forums-bf3871c69811e80116ada5134f73bea88a978e03.tar.bz2
forums-bf3871c69811e80116ada5134f73bea88a978e03.tar.xz
forums-bf3871c69811e80116ada5134f73bea88a978e03.zip
Well poop... Fix for bug #527235... /me goes off and slaps himself..
git-svn-id: file:///svn/phpbb/trunk@2283 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install.php b/phpBB/install.php
index 27bff21ebe..0a9e947289 100644
--- a/phpBB/install.php
+++ b/phpBB/install.php
@@ -514,7 +514,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'] )
+ 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;
}