Mystics
Tue 20th May '08, 8:25am
This code in wbb3/006.php:
$try->set_value('mandatory', 'importforumid', $forum_ids_array["$data[boardID]"]);
should be:
$try->set_value('mandatory', 'importforumid', $data['boardID']);And this:
$try->set_value('mandatory', 'forumid', $data['boardID']);should be:
$try->set_value('mandatory', 'forumid', $forum_ids_array["$data[boardID]"]);This:
$try->set_value('nonmandatory', 'open', $data['isClosed']);
should be:
$try->set_value('nonmandatory', 'open', ($data['isClosed'] == 0 ? 1 : 0));
And this:
$try->set_value('nonmandatory', 'sticky', $data['isSticky']);
should be:
$try->set_value('nonmandatory', 'sticky', ($data['isSticky'] == 1 ? 1 : 0));