diff options
| author | David M <davidmj@users.sourceforge.net> | 2006-05-13 17:48:21 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2006-05-13 17:48:21 +0000 |
| commit | 2499d92c83e5bad7860e7b581525a947b6bde27d (patch) | |
| tree | f943fadcf17ba055f9e489d7394c99d85bd4061c /phpBB/posting.php | |
| parent | c652f7a4a7531abd38c6d54eef12b8759077af65 (diff) | |
| download | forums-2499d92c83e5bad7860e7b581525a947b6bde27d.tar forums-2499d92c83e5bad7860e7b581525a947b6bde27d.tar.gz forums-2499d92c83e5bad7860e7b581525a947b6bde27d.tar.bz2 forums-2499d92c83e5bad7860e7b581525a947b6bde27d.tar.xz forums-2499d92c83e5bad7860e7b581525a947b6bde27d.zip | |
- captcha stuff
- unique_id
git-svn-id: file:///svn/phpbb/trunk@5911 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
| -rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index a357e565c6..e57fe60407 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -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']; } |
