Topic: removing moderate by thing
how do you remove the little text at the bottom of each forum that shows who moderates it.
my site - http://intenseplanet.com
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → removing moderate by thing
how do you remove the little text at the bottom of each forum that shows who moderates it.
Comment out this section in index.php
if ($cur_forum['moderators'] != '')
{
$mods_array = unserialize($cur_forum['moderators']);
$moderators = array();
while (list($mod_username, $mod_id) = @each($mods_array))
$moderators[] = '<a href="profile.php?id='.$mod_id.'">'.pun_htmlspecialchars($mod_username).'</a>';
$moderators = "\t\t\t\t\t\t\t\t".'<p><em>('.$lang_common['Moderated by'].'</em> '.implode(', ', $moderators).')</p>'."\n";
}
PunBB Forums → PunBB 1.2 troubleshooting → removing moderate by thing
Powered by PunBB, supported by Informer Technologies, Inc.