Yeah!
Thanks to your tip I quickly made this stupid hack:
In
functions.php, just before
PHP Code:
$post[joindate]=vbdate($registereddateformat,$post[joindate]);
I added:
PHP Code:
//HACK: linkable user posts for admins & supermods
if (($bbuserinfo['usergroupid']==6) || ($bbuserinfo['usergroupid']==5)) {
$postslink="<a href=\"search.php?s=$session[sessionhash]&action=finduser&userid=$post[userid]\">$post[posts]</a>";
} else {
$postslink="$post[posts]";
}
//HACK: linkable user posts for admins & supermods
Of course, in In
postbit template
I replaced
Posts: $post[posts] with
Posts: $postslink...
If that could be useful to somebody...
Thanks again.
Bye