MyBB Community Forums

Full Version: No comma between members in Who Have Been Registered Today
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
After update to 1822, there is comma missed between members in Who Have Been Registered Today plugin.

I try to do in reggedtoday.php file as below.

I changed

 eval("\$regged_today = \"".$templates->get("regged_today_index")."\";");
 
to
 eval("\$regged_today = \"".$comma.$templates->get("regged_today_index")."\";");

But not work.
How to do add comma?
I haven't looked much at the plugin, but I believe if you place a comma within the template: index_whosonline_memberbit

you will have more success than putting a comma into an eval.
Below is the template.
<tr>
	<td class="tcat"><strong>{$lang->whos_regged_today}</strong></td>
</tr>
<tr>
	<td class="trow1"><span class="smalltext">{$lang->regged_note_today}<br />{$reggedmembers}</span></td>
</tr>
Can you link to the plugin?