hmmm this is my new fnction.php edit
PHP Code:
// do posts from ignored users
if (($ignore[$post[userid]] and $post[userid] != 0)) {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
} else {
if ($bbuserinfo[usergroupid]==6) {
eval("\$retval = \"".gettemplate("postbit_admin")."\";");
}
else{
eval("\$retval = \"".gettemplate("postbit")."\";");
}
}
return $retval;
}
but somehow its displaying all the posts with postbit_admin . Even with normal users. Any ideas?