The parameters for the
print_forum_chooser() function in /includes/adminfunctions.php have changed.
Old (vB 3.0.7):
PHP Code:
function print_forum_chooser($name = 'forumid', $selectedid = -1, $topname = NULL, $title = NULL, $displaytop = 1, $multiple = 0, $displayselectforum = 0)
New (vB 3.5 Beta 3):
PHP Code:
function print_forum_chooser($title, $name, $selectedid = -1, $topname = null, $displayselectforum = false, $multiple = false)
The
$title parameter has moved from the 4th parameter to the 1st,
$displayselectforum and
$multiple have swapped places, and the
$displaytop parameter has been deleted.