1
From the original post:
https://xoops.org/modules/newbb/viewtopic.php?topic_id=19822&forum=28Bug: Selbox items are only ordered at root level.
Fix:
File:xoopstree.php,
Function: function makeMySelBox($title,$order="",$preset_id=0, $none=0, $sel_name="", $onchange="")
~line 170
Change from:
$arr = $this->getChildTreeArray($catid);
to:
$arr = $this->getChildTreeArray($catid, $order);
Explanation: Pass on the $order parameter to the getChildTreeArray() call.
Venezia