Here is how I did it... If you notice the code is a little simpler and it acheives an bonus effect in that moderators of the forum (including super moderators and administrators) don't see the "Report" icon I have set up for regular members.
PHP Code:
if (ismoderator(0,"",$bbuserinfo[userid])) {
if ($post[ip]!="") {
if ($logip==2) {
eval("\$post[iplogged] .= \"".gettemplate("postbit_ip_show")."\";");
}
if ($logip==1) {
eval("\$post[iplogged] .= \"".gettemplate("postbit_ip_hidden")."\";");
}
if ($logip==0) {
$post[iplogged]="";
}
} else {
$post[iplogged]="";
}
$post[report]="";
} else {
eval("\$post[report] .= \"".gettemplate("postbit_report")."\";");
$post[iplogged]="";
}
This does require a new template called "postbit_report" to hold the code for the report icon.