aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha/plugins/captcha_abstract.php
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2009-06-14 15:24:03 +0000
committerHenry Sudhof <kellanved@phpbb.com>2009-06-14 15:24:03 +0000
commitb60f96c4ec09a41f0ecd19f16caca7f88808cc23 (patch)
tree4d2bf961b5df3b541dbd4f336208239506d2d33d /phpBB/includes/captcha/plugins/captcha_abstract.php
parent6424647f653560e649573a04321c783e32f650f9 (diff)
downloadforums-b60f96c4ec09a41f0ecd19f16caca7f88808cc23.tar
forums-b60f96c4ec09a41f0ecd19f16caca7f88808cc23.tar.gz
forums-b60f96c4ec09a41f0ecd19f16caca7f88808cc23.tar.bz2
forums-b60f96c4ec09a41f0ecd19f16caca7f88808cc23.tar.xz
forums-b60f96c4ec09a41f0ecd19f16caca7f88808cc23.zip
See if this plays out: do not require people to re-enter the CAPTCHA
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9591 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha/plugins/captcha_abstract.php')
-rw-r--r--phpBB/includes/captcha/plugins/captcha_abstract.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/captcha/plugins/captcha_abstract.php b/phpBB/includes/captcha/plugins/captcha_abstract.php
index 6ca6bc628e..1446df9874 100644
--- a/phpBB/includes/captcha/plugins/captcha_abstract.php
+++ b/phpBB/includes/captcha/plugins/captcha_abstract.php
@@ -183,7 +183,8 @@ class phpbb_default_captcha
function validate()
{
global $config, $db, $user;
-
+
+ $error = '';
$this->confirm_code = request_var('confirm_code', '');
if (!$this->confirm_id)
{