aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-07-11 12:28:01 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-07-11 12:28:01 +0200
commitfe66f53b0a2399e2fbf08930269c217ddb80702b (patch)
treebf5aa2ef9c17c67fdd9566a44b400e17c1e706f7
parented151cd6aaa5ec875d56d33e8908771a1244f98a (diff)
downloadforums-fe66f53b0a2399e2fbf08930269c217ddb80702b.tar
forums-fe66f53b0a2399e2fbf08930269c217ddb80702b.tar.gz
forums-fe66f53b0a2399e2fbf08930269c217ddb80702b.tar.bz2
forums-fe66f53b0a2399e2fbf08930269c217ddb80702b.tar.xz
forums-fe66f53b0a2399e2fbf08930269c217ddb80702b.zip
[ticket/9657] Fix labels on confirm_delete_body.html
PHPBB3-9657
-rw-r--r--phpBB/styles/prosilver/template/confirm_delete_body.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/confirm_delete_body.html b/phpBB/styles/prosilver/template/confirm_delete_body.html
index 817acbf8ba..759b6b46b2 100644
--- a/phpBB/styles/prosilver/template/confirm_delete_body.html
+++ b/phpBB/styles/prosilver/template/confirm_delete_body.html
@@ -11,7 +11,7 @@
<!-- ENDIF -->
<!-- IF S_DELETE_REASON -->
- <label id="delete_reason">
+ <label for="delete_reason">
<strong>{L_DELETE_REASON}{L_COLON}</strong><br /><span>{L_DELETE_REASON_EXPLAIN}</span><br />
<input type="text" name="delete_reason" value="" class="inputbox autowidth" maxlength="120" size="45" />
</label>
@@ -50,9 +50,9 @@
<!-- ENDIF -->
<!-- IF S_DELETE_REASON -->
- <dl id="delete_reason">
+ <dl>
<dt><label for="delete_reason">{L_DELETE_REASON}{L_COLON}</label><br /><span>{L_DELETE_REASON_EXPLAIN}</span></dt>
- <dd><input type="text" name="delete_reason" value="" class="inputbox autowidth" maxlength="120" size="45" /></dd>
+ <dd><input type="text" name="delete_reason" id="delete_reason" value="" class="inputbox autowidth" maxlength="120" size="45" /></dd>
</dl>
<!-- ENDIF -->
</fieldset>