diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2010-02-08 16:54:39 +0000 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2010-02-08 16:54:39 +0000 |
| commit | 8682f644e558fff6e82978865a75c9cc6868023a (patch) | |
| tree | fd5a6f4d3737cf9751ff6599e52ae947faed201b /phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php | |
| parent | f631d62508230393db97b2d1822018dcdbefb86e (diff) | |
| download | forums-8682f644e558fff6e82978865a75c9cc6868023a.tar forums-8682f644e558fff6e82978865a75c9cc6868023a.tar.gz forums-8682f644e558fff6e82978865a75c9cc6868023a.tar.bz2 forums-8682f644e558fff6e82978865a75c9cc6868023a.tar.xz forums-8682f644e558fff6e82978865a75c9cc6868023a.zip | |
Merge r10484 and r10485 into 3.0.7 branch.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_7@10486 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php')
| -rw-r--r-- | phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php index ef4d8e9fac..49a64b9339 100644 --- a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php @@ -137,14 +137,14 @@ class phpbb_captcha_qa return false; } - $sql = 'SELECT COUNT(question_id) as count + $sql = 'SELECT COUNT(question_id) AS question_count FROM ' . CAPTCHA_QUESTIONS_TABLE . " WHERE lang_iso = '" . $db->sql_escape($config['default_lang']) . "'"; $result = $db->sql_query($sql); $row = $db->sql_fetchrow($result); $db->sql_freeresult($result); - return ((bool) $row['count']); + return ((bool) $row['question_count']); } /** |
