aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2010-01-26 14:58:55 +0000
committerHenry Sudhof <kellanved@phpbb.com>2010-01-26 14:58:55 +0000
commit62d7e3c6340086548790bd136bc33fa19fee1746 (patch)
treee7ec23e56632620cb549346eb30f908f8f28fc74 /phpBB/includes/captcha
parent5df687f82044c77a0c1063608d78d85912940ced (diff)
downloadforums-62d7e3c6340086548790bd136bc33fa19fee1746.tar
forums-62d7e3c6340086548790bd136bc33fa19fee1746.tar.gz
forums-62d7e3c6340086548790bd136bc33fa19fee1746.tar.bz2
forums-62d7e3c6340086548790bd136bc33fa19fee1746.tar.xz
forums-62d7e3c6340086548790bd136bc33fa19fee1746.zip
erm, that wouldn't work
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10457 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha')
-rw-r--r--phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php
index 619a05663f..065de23e72 100644
--- a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php
@@ -263,7 +263,7 @@ class phpbb_captcha_qa
{
global $db, $config;
- $sql = 'SELECT c.question_id
+ $sql = 'SELECT c.confirm_id
FROM ' . CAPTCHA_QA_CONFIRM_TABLE . ' c
LEFT JOIN ' . SESSIONS_TABLE . ' s
ON (c.session_id = s.session_id)
@@ -277,14 +277,14 @@ class phpbb_captcha_qa
do
{
- $sql_in[] = (string) $row['question_id'];
+ $sql_in[] = (string) $row['confirm_id'];
}
while ($row = $db->sql_fetchrow($result));
if (sizeof($sql_in))
{
$sql = 'DELETE FROM ' . CAPTCHA_QA_CONFIRM_TABLE . '
- WHERE ' . $db->sql_in_set('question_id', $sql_in);
+ WHERE ' . $db->sql_in_set('confirm_id', $sql_in);
$db->sql_query($sql);
}
}