MyBB Community Forums

Full Version: [F] Smilie sorting
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the Admin-CP you can enter numbers to sort the smilies. But this sorting isn't applied to the list you see next to the editor.

Possible fix: Open inc/class_datacache.php and search for:
$query = $db->simple_select("smilies", "*", "", array('order_by' => 'LENGTH(find)', 'order_dir' => 'DESC'));
Replace with:
$query = $db->simple_select("smilies", "*", "", array('order_by' => 'disporder', 'order_dir' => 'ASC'));
As far as I can see this fix is working fine.
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.