When adding a forum, the categories are not ordereb by the order number, but rather by name.
Replace:
SELECT Cat_Title,Cat_Entry FROM {$config['tbprefix']}Category WHERE Cat_Type='forum' ORDER BY Cat_Title
With:
SELECT Cat_Title,Cat_Entry FROM {$config['tbprefix']}Category WHERE Cat_Type='forum' ORDER BY Cat_Number
Edited by Charles Capps (06/27/05 05:19 PM)