aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2009-08-12 22:03:14 +0000
committerHenry Sudhof <kellanved@phpbb.com>2009-08-12 22:03:14 +0000
commit929fd29ce13ad42235b58f327b694a00780ebe5e (patch)
treea292748ae92ff125b632c362aaab2dc50d5b3a41 /phpBB
parentaf213166f36f3e71e4f3387827629fea5d190711 (diff)
downloadforums-929fd29ce13ad42235b58f327b694a00780ebe5e.tar
forums-929fd29ce13ad42235b58f327b694a00780ebe5e.tar.gz
forums-929fd29ce13ad42235b58f327b694a00780ebe5e.tar.bz2
forums-929fd29ce13ad42235b58f327b694a00780ebe5e.tar.xz
forums-929fd29ce13ad42235b58f327b694a00780ebe5e.zip
some fixes
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9968 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php
index 9b05f25dd3..cdbb7ea864 100644
--- a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php
+++ b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php
@@ -272,7 +272,7 @@ class phpbb_captcha_qa
'question_id' => array('UINT', Null, 'auto_increment'),
'strict' => array('BOOL', 0),
'lang_id' => array('UINT', 0),
- 'lang_iso' => array('VCHAR:30', 0),
+ 'lang_iso' => array('VCHAR:30', ''),
'question_text' => array('TEXT_UNI', ''),
),
'PRIMARY_KEY' => 'question_id',
@@ -293,7 +293,7 @@ class phpbb_captcha_qa
'COLUMNS' => array(
'session_id' => array('CHAR:32', ''),
'confirm_id' => array('CHAR:32', ''),
- 'lang_iso' => array('VCHAR:30', 0),
+ 'lang_iso' => array('VCHAR:30', ''),
'question_id' => array('UINT', 0),
'attempts' => array('UINT', 0),
'confirm_type' => array('USINT', 0),