mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-25 04:24:31 +02:00
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9992 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@ -676,7 +676,7 @@ class phpbb_captcha_qa
|
||||
{
|
||||
global $db, $template;
|
||||
|
||||
$sql = 'SELECT * FROM ' . CAPTCHA_QUESTIONS_TABLE . ' WHERE 1';
|
||||
$sql = 'SELECT * FROM ' . CAPTCHA_QUESTIONS_TABLE;
|
||||
$result = $db->sql_query($sql);
|
||||
$template->assign_vars(array(
|
||||
'S_LIST' => true,
|
||||
@ -857,7 +857,7 @@ class phpbb_captcha_qa
|
||||
global $db;
|
||||
|
||||
$langs = array();
|
||||
$sql = 'SELECT * FROM ' . LANG_TABLE . ' WHERE 1';
|
||||
$sql = 'SELECT * FROM ' . LANG_TABLE;
|
||||
$result = $db->sql_query($sql);
|
||||
while($row = $db->sql_fetchrow($result))
|
||||
{
|
||||
|
Reference in New Issue
Block a user