mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9992 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
ee1ae00e03
commit
bc57fdc01c
1 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue