|
@@ -354,11 +354,6 @@ function template_main()
|
|
|
echo '
|
|
|
<li style="height: 2px; background: #ccc; box-shadow: 0 -1px 0 #fff inset;"></li>';
|
|
|
|
|
|
- // Maybe they want to report this post to the moderator(s)?
|
|
|
- if ($context['can_report_moderator'])
|
|
|
- echo '
|
|
|
- <li class="report_link"><a href="', $scripturl, '?action=reporttm;topic=', $context['current_topic'], '.', $message['counter'], ';msg=', $message['id'], '">', $txt['report_to_mod'], '</a></li>';
|
|
|
-
|
|
|
// Can we issue a warning because of this post? Remember, we can't give guests warnings.
|
|
|
if ($context['can_issue_warning'] && !$message['is_message_author'] && !$message['member']['is_guest'])
|
|
|
echo '
|
|
@@ -569,7 +564,13 @@ function template_main()
|
|
|
|
|
|
echo '
|
|
|
</div>';
|
|
|
-
|
|
|
+ // Maybe they want to report this post to the moderator(s)?
|
|
|
+ if ($context['can_report_moderator'])
|
|
|
+ echo '
|
|
|
+ <ul class="floatright smalltext">
|
|
|
+ <li class="report_link"><a href="', $scripturl, '?action=reporttm;topic=', $context['current_topic'], '.', $message['counter'], ';msg=', $message['id'], '">', $txt['report_to_mod'], '</a></li>
|
|
|
+ </ul>';
|
|
|
+
|
|
|
// Show the quickbuttons, for various operations on posts.
|
|
|
if ($message['can_approve'] || $message['can_unapprove'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'] || $context['can_quote'])
|
|
|
{
|