mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
First round of fixes
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9791 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
aee21acf48
commit
5a1fa3b565
4 changed files with 7 additions and 4 deletions
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue