diff options
| author | Henry Sudhof <kellanved@phpbb.com> | 2009-07-19 09:45:23 +0000 |
|---|---|---|
| committer | Henry Sudhof <kellanved@phpbb.com> | 2009-07-19 09:45:23 +0000 |
| commit | 5a1fa3b56525e6cfbb0929f60b68e52583674589 (patch) | |
| tree | b4048c3b9d3ec0c6f776569b80132c341208fe3d | |
| parent | aee21acf48dca17da97d4ab89761adf2d6abf7bd (diff) | |
| download | forums-5a1fa3b56525e6cfbb0929f60b68e52583674589.tar forums-5a1fa3b56525e6cfbb0929f60b68e52583674589.tar.gz forums-5a1fa3b56525e6cfbb0929f60b68e52583674589.tar.bz2 forums-5a1fa3b56525e6cfbb0929f60b68e52583674589.tar.xz forums-5a1fa3b56525e6cfbb0929f60b68e52583674589.zip | |
First round of fixes
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9791 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/adm/style/captcha_qa_acp.html | 2 | ||||
| -rw-r--r-- | phpBB/adm/style/captcha_qa_acp_demo.html | 4 | ||||
| -rw-r--r-- | phpBB/language/en/captcha_qa.php | 3 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/template/captcha_qa.html | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/phpBB/adm/style/captcha_qa_acp.html b/phpBB/adm/style/captcha_qa_acp.html index 2ff35bcef1..343bb14a3e 100644 --- a/phpBB/adm/style/captcha_qa_acp.html +++ b/phpBB/adm/style/captcha_qa_acp.html @@ -75,7 +75,7 @@ </dl> <dl> <dt><label for="answers">{L_QUESTION_ANSWERS}</label><br /><span>{L_ANSWERS_EXPLAIN}</span></dt> - <dd><textarea id="answers" name="answers">{ANSWERS}</textarea></dd> + <dd><textarea id="answers" name="answers" rows="15" cols="80" >{ANSWERS}</textarea></dd> </dl> </fieldset> <fieldset class="quick"> diff --git a/phpBB/adm/style/captcha_qa_acp_demo.html b/phpBB/adm/style/captcha_qa_acp_demo.html index 5c3f9c320e..919d4d48d5 100644 --- a/phpBB/adm/style/captcha_qa_acp_demo.html +++ b/phpBB/adm/style/captcha_qa_acp_demo.html @@ -1,7 +1,7 @@ <dl> - <dt><label for="answer">{L_QUESTION}:</label><br /><span>{L_QUESTION_EXPLAIN}</span></dt> + <dt><label for="answer">{L_CONFIRM_QUESTION}:</label><br /><span>{L_CONFIRM_QUESTION_EXPLAIN}</span></dt> <dd> - <input type="text" />
+ <input type="text" tabindex="10" name="answer" id="answer" size="45" class="inputbox autowidth" title="{L_ANSWER}" />
</dd> </dl> diff --git a/phpBB/language/en/captcha_qa.php b/phpBB/language/en/captcha_qa.php index 03721cc8a9..5be92b4cdb 100644 --- a/phpBB/language/en/captcha_qa.php +++ b/phpBB/language/en/captcha_qa.php @@ -42,6 +42,9 @@ $lang = array_merge($lang, array( 'QUESTION_ANSWERS' => 'Answers', 'ANSWERS_EXPLAIN' => 'The Answers. Please write one answer per line.', + 'CONFIRM_QUESTION' => 'Question', + + 'ANSWER' => 'Answer', 'QUESTIONS' => 'Questions', 'QUESTIONS_EXPLAIN' => 'Here you can add enter and edit questions to be asked on registration to ward against automatted installs.', 'QUESTION_DELETED' => 'Question deleted', diff --git a/phpBB/styles/prosilver/template/captcha_qa.html b/phpBB/styles/prosilver/template/captcha_qa.html index 2f57afc61a..52df6fac4a 100644 --- a/phpBB/styles/prosilver/template/captcha_qa.html +++ b/phpBB/styles/prosilver/template/captcha_qa.html @@ -10,7 +10,7 @@ <dl> <dt><label>{CONFIRM_QUESTION}</label>:<br /><span>{L_CONFIRM_QUESTION_EXPLAIN}</span></dt>
<dd> - <input type="text" tabindex="10" name="answer" id="answer" size="25" value="{USERNAME}" class="inputbox autowidth" title="{L_ANSWER}" /> + <input type="text" tabindex="10" name="answer" id="answer" size="45" class="inputbox autowidth" title="{L_ANSWER}" /> <input type="hidden" name="confirm_id" id="confirm_id" value="{CONFIRM_ID}" /> </dd> </dl> |
