public void setLevel(int level)
{
_level = level;
if(_forum == null)
{
if(_level >= 2)
{
_forum = ForumsBBSManager.getInstance().getForumByName("ClanRoot").getChildByName(_name);
if(_forum == null) // Line 806
{
_forum = ForumsBBSManager.getInstance().createNewForum(_name,ForumsBBSManager.getInstance().getForumByName("ClanRoot"),Forum.CLAN,Forum.CLANMEMBERONLY,getClanId());
}
}
}
} I see it's ok ( I never modified this file , and it was working fine)