to these who want prevent this page content to be visible to non-staff members , just do e.g.
Code:
<vb:if condition="is_member_of($bbuserinfo, 6,5,7)">
<h2 class="blockhead">{vb:phrase rpl_reported_posts} - {vb:rawphrase rpl_for_last_x_days, {vb:var vboptions.rpldays}}</h2>
<table id="reportlist_table" width="100%">
<tr>
<td class="blocksubhead">{vb:phrase rpl_reported}</td>
<vb:if condition="$show['rpladmin']">
<td class="blocksubhead">{vb:phrase rpl_reporter}</td>
</vb:if>
<td class="blocksubhead">{vb:phrase rpl_thread_title}</td>
<td class="blocksubhead">{vb:phrase rpl_item}</td>
<td class="blocksubhead">{vb:phrase rpl_actioned}</td>
<td class="blocksubhead">{vb:phrase moderator}</td>
</tr>
<vb:each from="rpl.list" value="rplrow">
<tr class="alt1 normal">
<vb:each from="rplrow" value="row">
<vb:if condition="$row['type'] == 'noaction'">
<td class="alt2">{vb:phrase rpl_not_actioned}</td><td class="alt2">-</td>
</vb:if>
<vb:if condition="$row['type'] == 'nolink'">
<td<vb:if condition="$row['align']"> align="{vb:raw row.align}"</vb:if>>{vb:raw row.cdata}</td>
</vb:if>
<vb:if condition="$row['type'] == 'link'">
<td<vb:if condition="$row['align']"> align="{vb:raw row.align}"</vb:if>><a title="{vb:phrase rpl_click_to_view}" href="{vb:raw row.clink}">{vb:raw row.cdata}</a></td>
</vb:if>
</vb:each>
</tr>
</vb:each>
</vb:if>
it's simple IF check which prevents the list to appear to anyone outside groups 5,6,7 while page still exists