hmmm, never noticed it
try (replace plugin):
PHP Code:
if ($vbulletin->templatecache['showthread_quickreply'])
{
$vbulletin->templatecache['showthread_quickreply'] = str_replace(
array(
'<td width=\"100%\"> </td>',
),
array(
'<td><img src=\"$stylevar[imgdir_editor]/separator.gif\" width=\"6\" height=\"20\" alt=\"\" /></td>
<td><div class=\"imagebutton\" id=\"vB_Editor_QR_cmd_smilie\">
<img src=\"$stylevar[imgdir_editor]/smilie.gif\" alt=\"Smilies\" border=\"0\" onclick=\"vB_Editor[\'$editorid\'].open_smilie_window(smiliewindow_x, smiliewindow_y); return false\" /></div></td>
<td width=\"100%\"> </td>',
),
$vbulletin->templatecache['showthread_quickreply']
);
}