Quote:
Originally Posted by VBDev
Here is how you could temporarly remove the random thing (I will make an option in the next version): - Open includes/functions_mgc_cb.php
- Find
PHP Code:
$smileys = $vbulletin->db->query_read("
SELECT smilieid, smilietext, smiliepath, title
FROM " . TABLE_PREFIX . "smilie
ORDER BY RAND() LIMIT " . $vbulletin->options['mgc_cb_editor_nbsmileys'] . "
");
- Replace it by
PHP Code:
$smileys = $vbulletin->db->query_read("
SELECT smilieid, smilietext, smiliepath, title
FROM " . TABLE_PREFIX . "smilie
ORDER BY displayorder
");
- Here you go

|
Thanks, I've tried that but in that case it shows me like all available smilies or too many of them, not sure which, but much more then it is chosen in acp.