1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 17:27:16 +02:00

- captcha stuff

- unique_id


git-svn-id: file:///svn/phpbb/trunk@5911 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2006-05-13 17:48:21 +00:00
parent c652f7a4a7
commit 2499d92c83
6 changed files with 27 additions and 39 deletions

View File

@@ -628,7 +628,7 @@ if ($submit || $preview || $refresh)
$confirm_row = $db->sql_fetchrow($result);
$db->sql_freeresult($result);
if ($confirm_row['code'] !== $confirm_code)
if (strcasecmp($confirm_row['code'], $confirm_code) == 0)
{
$error[] = $user->lang['CONFIRM_CODE_WRONG'];
}