in Ultimate.cgi
find
$Moderator = join(", ", @mods);
replace for
# moderator profile link
$ccataux = 0;
$Moderator = '';
foreach (@mods) {
if ($ccataux > 0) {
$Moderator = $Moderator . ', ';
}
$UserNameCodedccat = &HTMLIFY($mods[$ccataux]);
$UserNameCodedccat =~ tr/ /+/;
$Moderator = $Moderator . "
$mods[$ccataux]";
$ccataux++;
}
#end moderator profile link
# $Moderator = join(", ", @mods);
------------------
