OK yeah another error.
In index.php find
PHP Code:
eval ("\$leaders .= \"".gettemplate('forumhome_loggedinuser_leader')."\";");
and replace it with
PHP Code:
eval ("\$leaders = \"".gettemplate('forumhome_loggedinuser_leader')."\";");
Then find
PHP Code:
eval ("\$leaders .= \"".gettemplate('forumhome_loggedinuser_leader')."\";");
and replace it with
PHP Code:
eval ("\$leaders .= \", ".gettemplate('forumhome_loggedinuser_leader')."\";");