diff options
| -rwxr-xr-x | phpBB/templates/subSilver/bbcode.tpl | 2 | ||||
| -rw-r--r-- | phpBB/templates/subSilver/modcp_body.tpl | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/templates/subSilver/bbcode.tpl b/phpBB/templates/subSilver/bbcode.tpl index 82ad67d7c7..38cadbed4f 100755 --- a/phpBB/templates/subSilver/bbcode.tpl +++ b/phpBB/templates/subSilver/bbcode.tpl @@ -92,7 +92,7 @@ <!-- END img --> <!-- BEGIN url --> -<a href="{URL}" target="_blank">{DESCRIPTION}</a> +<a href="{URL}" target="_blank" class="postbody">{DESCRIPTION}</a> <!-- END url --> <!-- BEGIN email --> diff --git a/phpBB/templates/subSilver/modcp_body.tpl b/phpBB/templates/subSilver/modcp_body.tpl index 107bbe0dde..372d746152 100644 --- a/phpBB/templates/subSilver/modcp_body.tpl +++ b/phpBB/templates/subSilver/modcp_body.tpl @@ -26,7 +26,9 @@ <td class="row1"> <span class="topictitle"><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a></span></td> <td class="row2" align="center" valign="middle"><span class="postdetails">{topicrow.REPLIES}</span></td> <td class="row1" align="center" valign="middle"><span class="postdetails">{topicrow.LAST_POST}</span></td> - <td class="row2" align="center" valign="middle"><input type="checkbox" name="topic_id_list[]" value="{topicrow.TOPIC_ID}" /></td> + <td class="row2" align="center" valign="middle"> + <input type="checkbox" name="topic_id_list[]" value="{topicrow.TOPIC_ID}" /> + </td> </tr> <!-- END topicrow --> <tr align="right"> |
