I forgott a changing in the READ.ME.
This will show the BB Codes (do='modify') in your sortorder.
search for:
Code:
$bbcodes = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "bbcode");
and replace with:
Code:
$bbcodes = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "bbcode ORDER BY sortorder ASC");
For everyone, who doesn't want that inactive BB Codes will shown on the misc.php=bbcode, he needs to edit the
misc.php, too.
search for:
Code:
$bbcodes = $db->query_read_slave("SELECT * FROM " . TABLE_PREFIX . "bbcode ORDER BY bbcodetag, twoparams");
and replace with:
Code:
$bbcodes = $db->query_read_slave("SELECT * FROM " . TABLE_PREFIX . "bbcode WHERE active=1 ORDER BY bbcodetag, twoparams");
Hope that Jelsoft will integrade it in a further version.