Yes, simply don't do this for the PHP
Code:
+-------------------------------------------------------------------------------------------------+
| In admin/functions.php, replace this code: |
+-------------------------------------------------------------------------------------------------+
//highlight words for search engine
+-------------------------------------------------------------------------------------------------+
+-------------------------------------------------------------------------------------------------+
| With this code: |
+-------------------------------------------------------------------------------------------------+
// Display IP logged or Report post if applicable
if (($bbuserinfo[usergroupid]==5 or $bbuserinfo[usergroupid]==6) and $bbuserinfo[canreportposts]==1) {
$post[ipreport] = "$post[report] | $post[iplogged]";
} elseif (($bbuserinfo[usergroupid]==5 or $bbuserinfo[usergroupid]==6) and $bbuserinfo[canreportposts]==0) {
$post[ipreport] = "$post[iplogged]";
} elseif (($bbuserinfo[usergroupid]!=5 or $bbuserinfo[usergroupid]!=6) and $bbuserinfo[canreportposts]==1) {
$post[ipreport] = "$post[report]";
} else {
$post[ipreport] = "";
}
//highlight words for search engine
+-------------------------------------------------------------------------------------------------+
and you'll have to edit the postbit template manually to add the $post[report] variable that checks whether or not a user can report the posts then either displays a link or not.