Open forum/index.php and find:
PHP Code:
reset($imodcache["$mval1"]);
Below it, it should be:
PHP Code:
while ( list($mkey2,$moderator)=each($imodcache["$mval1"]) ) {
if ( !isset($forum['moderators']) ) {
eval("\$forum['moderators'] = \"".gettemplate('forumhome_moderator')."\";");
} else {
eval("\$forum['moderators'] .= \", ".gettemplate('forumhome_moderator')."\";");
}
}
}
If it isn't, then try replacing it with this. You probably made some modifications to this that made it work like how it is right now.