diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2009-10-27 13:54:03 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2009-10-27 13:54:03 +0000 |
commit | df5fa06035cd86f6441edcdecb5b18c0caba27f0 (patch) | |
tree | 5e6f6b9a70a814319d6a63f0f9dadad0dd0f4532 /phpBB/includes/captcha | |
parent | d53f9a22d61c3b63ff9b6fc8a653a63f18630356 (diff) | |
download | forums-df5fa06035cd86f6441edcdecb5b18c0caba27f0.tar forums-df5fa06035cd86f6441edcdecb5b18c0caba27f0.tar.gz forums-df5fa06035cd86f6441edcdecb5b18c0caba27f0.tar.bz2 forums-df5fa06035cd86f6441edcdecb5b18c0caba27f0.tar.xz forums-df5fa06035cd86f6441edcdecb5b18c0caba27f0.zip |
... and finally
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10239 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/captcha')
-rw-r--r-- | phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php index c078265971..45811c5d26 100644 --- a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php @@ -794,7 +794,7 @@ class phpbb_captcha_qa '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)) : '', + 'answers' => (strlen($answers)) ? explode("\n", $answers) : '', ); return $question; |