Quote:
Originally Posted by itsblack
Well, I think I found the problem. This mod has conflict with this one: Smilies in QR and QE
Your mod works fine When I diabled Smilies in QR and QE.
Can you help me to make them work together?
|
You certainly did find the problem. Specifically:
Code:
if (THIS_SCRIPT == 'showthread' AND ($editor_type == 'qr' OR $editor_type == 'qe'))
{ // workaround the disabling of smilies for quick reply and quick edit... this should be safe since $editor_type isn't used anywhere after this hook.
$editor_type = 'fe';
}
That mod changes the editor type.
Here's your workaround.
Change the Editor Size plugin to use the editor_toolbar_start hook location, and give it an execution order of 4. That should do the trick.