
08-21-2011, 11:05 AM
|
|
|
Join Date: May 2010
Location: Spain
Posts: 102
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Eric
Ok, for the <br> issue, this appears to correct it. Edit the /clientscript/cannedreplies.js file (the updated one in my post or xtremecoders' zip file) and replace everything with:
Code:
function insertCannedReply(text)
{
text = text.replace(/\n/g, "");
text = text.replace(/<br>/g, "\n");
if (document.getElementById("vB_Editor_001"))
{
CKEDITOR.instances.vB_Editor_001_editor.insertHtml(text);
}
else
{
CKEDITOR.instances.vB_Editor_QR_editor.insertHtml(text);
}
}
|
Works great for me! 4.1.5 p1
Thanks!!!!!!!!!!!!
|