Yeah great mod. Thanks a lot.
There's just one thing I've recently noticed. We had a problem with an uncached template 'editor_smiliebox' on 'showthread' using this mod together with the
GTSmiliebox - Move Smilies Below Editor.
In this case just add 'editor_smiliebox_GTSMILIEBOX_3700' to your 'cache_templates' hook ("[Component] Smilies-in-QR-and-QE").
i.e.:
Code:
if (THIS_SCRIPT == 'showthread' AND $vbulletin->options['quickreply'] > 0)
{
$globaltemplates = array_merge($globaltemplates, array(
// message stuff 3.5
'editor_smilie',
// smiliebox templates
'editor_smiliebox',
'editor_smiliebox_row',
'editor_smiliebox_straggler',
// misc often used
'newpost_disablesmiliesoption',
// fix for GTSmiliebox
'editor_smiliebox_GTSMILIEBOX_3700',
));
}
Seems to work fine for us together now