Topic: Removing Moderated by .. line in forums

Hi,

How can you remove the Moderated by line in the forum description?

Thanks,

K

Re: Removing Moderated by .. line in forums

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>';
        }

3

Re: Removing Moderated by .. line in forums

killersites wrote:

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/