Topic: Removing Moderated by .. line in forums
Hi,
How can you remove the Moderated by line in the forum description?
Thanks,
K
You are not logged in. Please login or register.
PunBB Forums → Discussions → Removing Moderated by .. line in forums
Hi,
How can you remove the Moderated by line in the forum description?
Thanks,
K
You can remove or comment this lines from index.php (started at 183 line):
if ($cur_forum['moderators'] != '')
{
$forum_page['mods_array'] = unserialize($cur_forum['moderators']);
$forum_page['item_mods'] = array();
foreach ($forum_page['mods_array'] as $mod_username => $mod_id)
$forum_page['item_mods'][] = ($forum_user['g_view_users'] == '1') ? '<a href="'.forum_link($forum_url['user'], $mod_id).'">'.forum_htmlencode($mod_username).'</a>' : forum_htmlencode($mod_username);
($hook = get_hook('in_row_modify_modlist')) ? eval($hook) : null;
$forum_page['item_subject']['modlist'] = '<span class="modlist">('.sprintf($lang_index['Moderated by'], implode(', ', $forum_page['item_mods'])).')</span>';
}
How can you remove the Moderated by line in the forum description?
It helps to do a search once in a while: http://punbb.informer.com/forums/topic/ … d-by-text/
PunBB Forums → Discussions → Removing Moderated by .. line in forums
Powered by PunBB, supported by Informer Technologies, Inc.