Quote:
Originally Posted by Loki12
Very nice. If I want the links to open in a new window, where must I add code?
|
Replace the code in the template
navbar_moderation with this:
Code:
<if condition="$bbuserinfo[usergroupid]=='6' or $bbuserinfo[usergroupid]=='5'">
<!-- Quick Moderation -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="<if condition="$alertmods==true">alertmod<else />alt1</if>" width="100%">
<div class="smallfont">
<b>Quick Moderation:</b>
<if condition="$show['threads']">
<a href="modcp/moderate.php?do=posts" target="_BLANK">Threads</a>: <b>$threads[count]</b>
</if>
<if condition="$show['posts']">
<a href="modcp/moderate.php?do=posts#posts" target="_BLANK">Posts</a>: <b>$posts[count]</b>
</if>
<if condition="$show['attachments']">
<a href="modcp/moderate.php?do=attachments" target="_BLANK">Attachments</a>: <b>$attachments[count]</b>
</if>
<if condition="$show['events']">
<a href="modcp/moderate.php?do=events" target="_BLANK">Events</a>: <b>$events[count]</b>
</if>
<if condition="$show['users']">
Users: <b>$users[count]</b>
</if>
<if condition="$show['reports']">
<a href="private.php" target="_BLANK">Reports Unfulfilled</a>: <b>$reports[count]</b>
</if>
</div>
</td>
</tr>
</table>
<!-- / Quick Moderation -->
<br />
</if>
(added target="_BLANK" to all links [<a href="X" target="_BLANK"])