works perfectly like always teammate
just a suggestion if you want to do it more comfortable:
make a new template called adminpostbit put inside $post[posts] and whatever postbitvariable you just want to show up to your admins/mods
then open functions.php
find:
PHP Code:
// do posts from ignored users
if (!$ignore[$post[userid]]) {
eval("\$retval = \"".gettemplate("postbit")."\";");
} else {
eval("\$retval = \"".gettemplate("postbit_ignore")."\";");
}
before it add:
PHP Code:
if ($bbuserinfo[usergroupid] == 6 or $bbuserinfo[usergroupid]==5) {
eval("\$adminpostbit = \"".gettemplate("adminpostbit")."\";");
} else {
$adminpostbit = "";
}
last step replace the $post[posts] in your postbit with $adminpostbit.
ok, its little more work than logicians way, but so you can easyly add other variables to, without codechanges