Hi,
I found two small typos within the filemodifications:
Code:
find:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Set Defaults;
$forum = array(
'title' => '',
'description' => '',
'link' => '',
'displayorder' => 1,
'daysprune' => -1,
'parentid' => $vbulletin->GPC['parentid'],
'newthreademail' => '',
'newpostemail' => '',
'moderatenewpost' => 0,
'moderatenewthread' => 0,
'moderateattach' => 0,
'warnall' => 0,
'styleid' => '',
'styleoverride' => 0,
'password' => '',
'canhavepassword' => 1,
'cancontainthreads' => 1,
'active' => 1,
'allowposting' => 1,
'indexposts' => 1,
'allowhtml' => 0,
'allowbbcode' => 1,
'allowimages' => 1,
'allowsmilies' => 1,
'allowicons' => 1,
'allowratings' => 1,
'countposts' => 1,
'showonforumjump' => 1,
There is no comma after 'showonforumjump' => 1.
Code:
find:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$forumbits = construct_forum_bit($forumid);
Seems now to be:
Code:
$forumbits = construct_forum_bit($foruminfo['forumid']);
Regards,
Tobi