Log in

View Full Version : How do I remove the comma between moderators?


Club3G
06-20-2005, 11:45 PM
This is absolutely a newbie question, so I apologize in advance - but in the forum list (index.php) how do I remove the comma between moderator names when there is more than one mod for a single forum? I'd like to replace it with a simple line break. :)

Thanks as always!

Andreas
06-20-2005, 11:54 PM
In functions_forumlist.php
FIND

eval('$forum[\'moderators\'] .= ", ' . fetch_template('forumhome_moderator') . '";');


REPLACE that with

eval('$forum[\'moderators\'] .= "<br />' . fetch_template('forumhome_moderator') . '";');

Club3G
06-20-2005, 11:57 PM
Thank you very much once again. :)