diff options
-rw-r--r-- | phpBB/templates/subSilver/posting_preview.tpl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/templates/subSilver/posting_preview.tpl b/phpBB/templates/subSilver/posting_preview.tpl index 945db35fae..afd6cca3bf 100644 --- a/phpBB/templates/subSilver/posting_preview.tpl +++ b/phpBB/templates/subSilver/posting_preview.tpl @@ -7,7 +7,15 @@ <td class="row1"><img src="templates/subSilver/images/icon_minipost.gif" alt="Post image icon" /><span class="postdetails">{L_POSTED}: {POST_DATE} {L_POST_SUBJECT}: {POST_SUBJECT}</span></td> </tr> <tr> - <td class="row1"><span class="postbody">{MESSAGE}</span></td> + <td class="row1"> + <table width="100%" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td> + <span class="postbody">{MESSAGE}</span> + </td> + </tr> + </table> + </td> </tr> <tr> <td class="spaceRow" height="1"><img src="templates/subSilver/images/spacer.gif" width="1" height="1"></td> |