aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/mcp_topic.html
diff options
context:
space:
mode:
authorJan Schejbal <jan-bugreport@gmx.de>2012-03-29 04:16:34 +0200
committerJan Schejbal <jan-bugreport@gmx.de>2012-03-29 04:16:34 +0200
commitfff9f6611eddffb4c509d6e5126c0b0c9723f345 (patch)
tree02010936c9ce6476ff80f8568d634a1763c009ed /phpBB/styles/prosilver/template/mcp_topic.html
parent2516b1e8f1ea2c9dd602c51fead6a258de7f5401 (diff)
downloadforums-fff9f6611eddffb4c509d6e5126c0b0c9723f345.tar
forums-fff9f6611eddffb4c509d6e5126c0b0c9723f345.tar.gz
forums-fff9f6611eddffb4c509d6e5126c0b0c9723f345.tar.bz2
forums-fff9f6611eddffb4c509d6e5126c0b0c9723f345.tar.xz
forums-fff9f6611eddffb4c509d6e5126c0b0c9723f345.zip
[ticket/10730] Added label tag around "select" text in post splitting UI
Added label tags around the "select" text in the post splitting UI in the MCP. Had to add IDs based on the post ID to the select boxes to allow label to work. Tested in Firefox and Chrome. PHPBB3-10730
Diffstat (limited to 'phpBB/styles/prosilver/template/mcp_topic.html')
-rw-r--r--phpBB/styles/prosilver/template/mcp_topic.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_topic.html b/phpBB/styles/prosilver/template/mcp_topic.html
index 2a5f52f038..5dbc8d670c 100644
--- a/phpBB/styles/prosilver/template/mcp_topic.html
+++ b/phpBB/styles/prosilver/template/mcp_topic.html
@@ -106,7 +106,7 @@ onload_functions.push('subPanels()');
<div class="inner"><span class="corners-top"><span></span></span>
<div class="postbody" id="pr{postrow.POST_ID}">
- <ul class="profile-icons"><li class="info-icon"><a href="{postrow.U_POST_DETAILS}" title="{L_POST_DETAILS}"><span>{L_POST_DETAILS}</span></a></li><li>{L_SELECT}: <input type="checkbox" name="post_id_list[]" value="{postrow.POST_ID}"<!-- IF postrow.S_CHECKED --> checked="checked"<!-- ENDIF --> /></li></ul>
+ <ul class="profile-icons"><li class="info-icon"><a href="{postrow.U_POST_DETAILS}" title="{L_POST_DETAILS}"><span>{L_POST_DETAILS}</span></a></li><li><label for="post_id_list_select_{postrow.POST_ID}">{L_SELECT}: <input type="checkbox" id="post_id_list_select_{postrow.POST_ID}" name="post_id_list[]" value="{postrow.POST_ID}"<!-- IF postrow.S_CHECKED --> checked="checked"<!-- ENDIF --> /></label></li></ul>
<h3><a href="{postrow.U_POST_DETAILS}">{postrow.POST_SUBJECT}</a></h3>
<p class="author"><a href="#pr{postrow.POST_ID}">{postrow.MINI_POST_IMG}</a> {L_POSTED} {postrow.POST_DATE} {L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong><!-- IF postrow.U_MCP_DETAILS --> [ <a href="{postrow.U_MCP_DETAILS}">{L_POST_DETAILS}</a> ]<!-- ENDIF --></p>