MyBB Community Forums

Full Version: Remove this comma
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how i can remove this comma at the start of moderated by
http://imageshack.us/photo/my-images/847/bildschirmfoto20111108u.png/
thanks
If you check in Templates & Style >> Templates >> YOUR THEME >> Forum Bit Templates >> forumbit_moderators

Should be in there

<br />{$lang->forumbit_moderated_by} {$moderators}
thanks for the reply
yeah i know that but how i can remove the small comma
^ have you checked the referred template ? does it consist of unwanted comma ?

:oops: is that a plugin for forumstats - which plugin ? have you modified it ?
yup i checked it
mine consist of
<br />{$lang->forumbit_moderated_by}{$moderators}

That is what i wanted you to do. If the comma is not there, look in your language files.

Inc >> languages >> English >>forumdisplay.lang.php

Look for Moderated By and change the text.
its
$l['moderated_by'] = "Moderated By:";
No comma in it also Sad
its not the plugin its editing in templates see
here
http://community.mybb.com/thread-107163.html
oMg i m so happy i just solved it by my self
Open ./inc/functions_forumlist.php and find;

$moderators.= "{$comma}<a href=\"".get_profile_link($moderator['id'])."\">".htmlspecialchars_uni($moderator['username'])."</a>"; 
and Change it into;
$moderators .= "<a href=\"".get_profile_link($moderator['id'])."\">".format_name(htmlspecialchars_uni($moderator['username']),$moderator['usergroup'],$moderator['displaygroup'])."</a>";