A curious problem of sorts.
I have downloaded and installed the mod onto a absolutely clean vBulletin 3.8.4 install (i.e. no mods, template hacks etc).
I then created a group and then clicked the link to create a forum for the group, this presented me with the following message on a standard VB redirection page:
"Cannot create forum!"
However, the forum is created and everything seems to work exactly as it should.
Having briefly delved into the code it seems that the issue is something to do with these lines in the
Code:
if (CreateForum($group))
{
eval(print_standard_redirect('sf_invalid_forum', true, true));
}
else
{
eval(print_standard_redirect('successfully_edited_group', true, true));
}
Having checked the CreateForum function in functions_socialforums.php it would seem that this returns true if the create is successful and false if not. So the syntax of the code above should be:
Code:
if (!CreateForum($group))
...
...
I have tested this on my test install and this seems to resolve the issue, but I am posting here just incase I am missing something.