Quote:
Originally posted by FWC
But, the moderator on the page isn't bold for some reason. I'll see if I can figure it out. But, any help would be appreciated.
|
sorry about mystics, he has forgotten the moderator-query in onlinetoday.php.
search for:
PHP Code:
if (!$usergroupdef['canwhosonline']) {
show_nopermission();
}
and place under:
PHP Code:
$forummoderators=$DB_site->query('SELECT user.userid,user.username,moderator.forumid
FROM moderator
LEFT JOIN user
ON (moderator.userid=user.userid)
ORDER BY user.username');
while ($moderator=$DB_site->fetch_array($forummoderators)) {
$imodcache["$moderator[forumid]"][] = $moderator;
$mod["$moderator[userid]"] = 1;
}
$DB_site->free_result($forummoderators);
unset($moderator);
but i have not tested this modification.