diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2003-09-15 21:07:49 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-09-15 21:07:49 +0000 |
| commit | b8dadd119a327489eff1223b1cedf38e2e0a06f7 (patch) | |
| tree | da1bd401eed0bcff31deafe79a7c9887f5a8f049 /phpBB/styles | |
| parent | 9c1391b7a2cdd8107f0c9625bd2e44d4cc97385f (diff) | |
| download | forums-b8dadd119a327489eff1223b1cedf38e2e0a06f7.tar forums-b8dadd119a327489eff1223b1cedf38e2e0a06f7.tar.gz forums-b8dadd119a327489eff1223b1cedf38e2e0a06f7.tar.bz2 forums-b8dadd119a327489eff1223b1cedf38e2e0a06f7.tar.xz forums-b8dadd119a327489eff1223b1cedf38e2e0a06f7.zip | |
topic type selection moved to template.
git-svn-id: file:///svn/phpbb/trunk@4505 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
| -rw-r--r-- | phpBB/styles/subSilver/template/posting_body.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/phpBB/styles/subSilver/template/posting_body.html b/phpBB/styles/subSilver/template/posting_body.html index a34d95a4a5..72794b5133 100644 --- a/phpBB/styles/subSilver/template/posting_body.html +++ b/phpBB/styles/subSilver/template/posting_body.html @@ -266,42 +266,42 @@ function checkForm() <td class="row2"><table cellspacing="0" cellpadding="1" border="0"> <!-- IF S_HTML_ALLOWED --> <tr> - <td><input type="checkbox" name="disable_html" {S_HTML_CHECKED} /></td> + <td><input type="checkbox" name="disable_html"{S_HTML_CHECKED} /></td> <td class="gen">{L_DISABLE_HTML}</td> </tr> <!-- ENDIF --> <!-- IF S_BBCODE_ALLOWED --> <tr> - <td><input type="checkbox" name="disable_bbcode" {S_BBCODE_CHECKED} /></td> + <td><input type="checkbox" name="disable_bbcode"{S_BBCODE_CHECKED} /></td> <td class="gen">{L_DISABLE_BBCODE}</td> </tr> <!-- ENDIF --> <!-- IF S_SMILIES_ALLOWED --> <tr> - <td><input type="checkbox" name="disable_smilies" {S_SMILIES_CHECKED} /></td> + <td><input type="checkbox" name="disable_smilies"{S_SMILIES_CHECKED} /></td> <td class="gen">{L_DISABLE_SMILIES}</td> </tr> <!-- ENDIF --> <tr> - <td><input type="checkbox" name="disable_magic_url" {S_MAGIC_URL_CHECKED} /></td> + <td><input type="checkbox" name="disable_magic_url"{S_MAGIC_URL_CHECKED} /></td> <td class="gen">{L_DISABLE_MAGIC_URL}</td> </tr> <!-- IF S_SIG_ALLOWED --> <tr> - <td><input type="checkbox" name="attach_sig" {S_SIGNATURE_CHECKED} /></td> + <td><input type="checkbox" name="attach_sig"{S_SIGNATURE_CHECKED} /></td> <td class="gen">{L_ATTACH_SIG}</td> </tr> <!-- ENDIF --> <!-- IF S_NOTIFY_ALLOWED --> <tr> - <td><input type="checkbox" name="notify" {S_NOTIFY_CHECKED} /></td> + <td><input type="checkbox" name="notify"{S_NOTIFY_CHECKED} /></td> <td class="gen">{L_NOTIFY_REPLY}</td> </tr> <!-- ENDIF --> <!-- IF S_TYPE_TOGGLE --> <tr> <td></td> - <td class="gen">{S_TYPE_TOGGLE}</td> + <td class="gen"><!-- IF S_EDIT_POST -->{L_CHANGE_TOPIC_TO}<!-- ELSE -->{L_POST_TOPIC_AS}<!-- ENDIF -->: <!-- BEGIN topic_type --><input type="radio" name="topic_type" value="{topic_type.VALUE}"{topic_type.S_CHECKED} />{topic_type.L_TOPIC_TYPE} <!-- END topic_type --></td> </tr> <!-- ENDIF --> </table></td> @@ -312,13 +312,13 @@ function checkForm() <td class="row2"><table cellspacing="0" cellpadding="1" border="0"> <!-- IF S_LOCK_TOPIC_ALLOWED --> <tr> - <td><input type="checkbox" name="lock_topic" {S_LOCK_TOPIC_CHECKED} /></td> + <td><input type="checkbox" name="lock_topic"{S_LOCK_TOPIC_CHECKED} /></td> <td class="gen">{L_LOCK_TOPIC}</td> </tr> <!-- ENDIF --> <!-- IF S_LOCK_POST_ALLOWED --> <tr> - <td><input type="checkbox" name="lock_post" {S_LOCK_POST_CHECKED} /></td> + <td><input type="checkbox" name="lock_post"{S_LOCK_POST_CHECKED} /></td> <td class="gen">{L_LOCK_POST} [{L_LOCK_POST_EXPLAIN}]</td> </tr> <!-- ENDIF --> |
