diff options
| author | Nils Adermann <naderman@naderman.de> | 2011-06-12 01:25:15 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2011-06-12 01:28:06 +0200 |
| commit | 8a5e3781d53e3df379c55166136abd6e71990af4 (patch) | |
| tree | f90d627e1221d12d1d3f1bfdd1969c36efb3e62f /phpBB/includes | |
| parent | 418c3d546a5ea29b5ce338e4710e0d3636009733 (diff) | |
| download | forums-8a5e3781d53e3df379c55166136abd6e71990af4.tar forums-8a5e3781d53e3df379c55166136abd6e71990af4.tar.gz forums-8a5e3781d53e3df379c55166136abd6e71990af4.tar.bz2 forums-8a5e3781d53e3df379c55166136abd6e71990af4.tar.xz forums-8a5e3781d53e3df379c55166136abd6e71990af4.zip | |
[ticket/9892] Shorten the index names on the q&a captcha
PHPBB3-9892
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php | 4 |
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 49a64b9339..45f76bd676 100644 --- a/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php +++ b/phpBB/includes/captcha/plugins/phpbb_captcha_qa_plugin.php @@ -319,7 +319,7 @@ class phpbb_captcha_qa ), 'PRIMARY_KEY' => 'question_id', 'KEYS' => array( - 'lang_iso' => array('INDEX', 'lang_iso'), + 'lang' => array('INDEX', 'lang_iso'), ), ), CAPTCHA_ANSWERS_TABLE => array ( @@ -328,7 +328,7 @@ class phpbb_captcha_qa 'answer_text' => array('STEXT_UNI', ''), ), 'KEYS' => array( - 'question_id' => array('INDEX', 'question_id'), + 'qid' => array('INDEX', 'question_id'), ), ), CAPTCHA_QA_CONFIRM_TABLE => array ( |
