git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9877 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Henry Sudhof 2009-07-28 07:05:17 +00:00
parent 78b1c4caaa
commit fc4aaa3f5a

View file

@ -32,7 +32,6 @@ define('QA_CONFIRM_TABLE', $table_prefix . 'qa_confirm');
class phpbb_captcha_qa class phpbb_captcha_qa
{ {
var $confirm_id; var $confirm_id;
var $confirm_code;
var $answer; var $answer;
var $question_ids; var $question_ids;
var $question_text; var $question_text;
@ -509,7 +508,7 @@ class phpbb_captcha_qa
$db->sql_query($sql); $db->sql_query($sql);
// we leave the class usable by generating a new question // we leave the class usable by generating a new question
$this->generate_code(); $this->select_question();
} }
/** /**