I am using 2.3.0, and I can't seem to find the 'closing' tag.
If you followed the instructions properly, the last thing you did now was to delete (or comment out) the SECOND occurance of this line:
Code:
eval("\$activeusers .= \"".gettemplate('forumhome_loggedinuser')."\";");
Did that.
Below that is a closing tag ( } ), and below that closing tag, paste this bit of code:
Code:
$staffusers = implode(", ", $su_r);
$normalusers = implode(", ", $nu_r);
$activeusers = iif($staffusers!="", "Staff: $staffusers <br />", "") . iif($normalusers!="", "Members: $normalusers", "");
Anyone who knows where the closing tag is could you please point it out? Thanks.