mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
fix spaces/tabs
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10236 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
56c8e34145
commit
b23f6c90ba
1 changed files with 7 additions and 9 deletions
|
@ -949,9 +949,7 @@ class phpbb_captcha_qa
|
||||||
return $langs;
|
return $langs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
|
||||||
/**
|
|
||||||
* Grab a question and bring it into a format the editor understands
|
* Grab a question and bring it into a format the editor understands
|
||||||
*/
|
*/
|
||||||
function acp_is_last($question_id)
|
function acp_is_last($question_id)
|
||||||
|
@ -963,7 +961,7 @@ class phpbb_captcha_qa
|
||||||
$sql = 'SELECT question_id
|
$sql = 'SELECT question_id
|
||||||
FROM ' . CAPTCHA_QUESTIONS_TABLE . "
|
FROM ' . CAPTCHA_QUESTIONS_TABLE . "
|
||||||
WHERE lang_iso = '" . $db->sql_escape($config['default_lang']) . "'
|
WHERE lang_iso = '" . $db->sql_escape($config['default_lang']) . "'
|
||||||
AND question_id <> " . (int) $question_id;
|
AND question_id <> " . (int) $question_id;
|
||||||
$result = $db->sql_query_limit($sql, 1);
|
$result = $db->sql_query_limit($sql, 1);
|
||||||
$question = $db->sql_fetchrow($result);
|
$question = $db->sql_fetchrow($result);
|
||||||
$db->sql_freeresult($result);
|
$db->sql_freeresult($result);
|
||||||
|
|
Loading…
Add table
Reference in a new issue