Author: Kellanved
Date: Sun Jul 19 09:45:23 2009
New Revision: 9791
Log:
First round of fixes
Modified:
branches/phpBB-3_0_0/phpBB/adm/style/captcha_qa_acp.html
branches/phpBB-3_0_0/phpBB/adm/style/captcha_qa_acp_demo.html
branches/phpBB-3_0_0/phpBB/language/en/captcha_qa.php
branches/phpBB-3_0_0/phpBB/styles/prosilver/template/captcha_qa.html
Modified: branches/phpBB-3_0_0/phpBB/adm/style/captcha_qa_acp.html
==============================================================================
*** branches/phpBB-3_0_0/phpBB/adm/style/captcha_qa_acp.html (original)
--- branches/phpBB-3_0_0/phpBB/adm/style/captcha_qa_acp.html Sun Jul 19 09:45:23 2009
***************
*** 75,81 ****
</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>
</dl>
</fieldset>
<fieldset class="quick">
--- 75,81 ----
</dl>
<dl>
<dt><label for="answers">{L_QUESTION_ANSWERS}</label><br /><span>{L_ANSWERS_EXPLAIN}</span></dt>
! <dd><textarea id="answers" name="answers" rows="15" cols="80" >{ANSWERS}</textarea></dd>
</dl>
</fieldset>
<fieldset class="quick">
Modified: branches/phpBB-3_0_0/phpBB/adm/style/captcha_qa_acp_demo.html
==============================================================================
*** branches/phpBB-3_0_0/phpBB/adm/style/captcha_qa_acp_demo.html (original)
--- branches/phpBB-3_0_0/phpBB/adm/style/captcha_qa_acp_demo.html Sun Jul 19 09:45:23 2009
***************
*** 1,7 ****
<dl>
! <dt><label for="answer">{L_QUESTION}:</label><br /><span>{L_QUESTION_EXPLAIN}</span></dt>
<dd>
! <input type="text" />
</dd>
</dl>
--- 1,7 ----
<dl>
! <dt><label for="answer">{L_CONFIRM_QUESTION}:</label><br /><span>{L_CONFIRM_QUESTION_EXPLAIN}</span></dt>
<dd>
! <input type="text" tabindex="10" name="answer" id="answer" size="45" class="inputbox autowidth" title="{L_ANSWER}" />
</dd>
</dl>
Modified: branches/phpBB-3_0_0/phpBB/language/en/captcha_qa.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/language/en/captcha_qa.php (original)
--- branches/phpBB-3_0_0/phpBB/language/en/captcha_qa.php Sun Jul 19 09:45:23 2009
***************
*** 42,47 ****
--- 42,50 ----
'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',
Modified: branches/phpBB-3_0_0/phpBB/styles/prosilver/template/captcha_qa.html
==============================================================================
*** branches/phpBB-3_0_0/phpBB/styles/prosilver/template/captcha_qa.html (original)
--- branches/phpBB-3_0_0/phpBB/styles/prosilver/template/captcha_qa.html Sun Jul 19 09:45:23 2009
***************
*** 10,16 ****
<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="hidden" name="confirm_id" id="confirm_id" value="{CONFIRM_ID}" />
</dd>
</dl>
--- 10,16 ----
<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="45" class="inputbox autowidth" title="{L_ANSWER}" />
<input type="hidden" name="confirm_id" id="confirm_id" value="{CONFIRM_ID}" />
</dd>
</dl>
|