
09-20-2011, 09:02 PM
|
 |
|
|
Join Date: Sep 2010
Posts: 143
Благодарил(а): 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);
}
}
|
this did not fix the br tag issue for me.
|