1
It seems there are at least a couple of bugs in newbb2.0.2 when you use the edit forum page on the admin side.
I mentioned this in the newbb2 help forum as well on dev.xoops.org, but no response so far.
First of all I get this error:
Fatal error: Call to undefined function: xoopsformselect() in /home/kms/public_html/modules/newbb/class/formselectuser.php on line 34
I think I have a fix for this though:
Change
$this->XoopsFormSelect($caption, $name, $value, $size, $multiple);
to
$this->XoopsFormSelectUser($caption, $name, $value, $size, $multiple);
in the file that has the error. This reveals further problems though:
Fatal error: Call to undefined function: addoptionarray() in /home/kms/public_html/modules/newbb/class/formselectuser.php on line 47
Which seems to be caused by:
$this->addOptionArray($member_handler->getUserList($criteria));
So I am stuck here for now.
...