Author: Kellanved
Date: Tue Oct 27 13:54:03 2009
New Revision: 10239
Log:
... and finally
Modified:
branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php
Modified: branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php (original)
--- branches/phpBB-3_0_0/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php Tue Oct 27 13:54:03 2009
***************
*** 794,800 ****
'question_text' => request_var('question_text', '', true),
'strict' => request_var('strict', false),
'lang_iso' => request_var('lang_iso', ''),
! 'answers' => (strlen($answers)) ? explode("\n", request_var('answers', '', true)) : '',
);
return $question;
--- 794,800 ----
'question_text' => request_var('question_text', '', true),
'strict' => request_var('strict', false),
'lang_iso' => request_var('lang_iso', ''),
! 'answers' => (strlen($answers)) ? explode("\n", $answers) : '',
);
return $question;
|