I've got a web page with a link like this included:
<A href="http://someplace.net/dosomething.asp?tid=900226&eid={{~~eid~~}}&sb_id={{~~sb_id~~}}" target=New><IMG height=274 alt=" width=" src="http://www.holacomoestas.com/artsheet/v2/1473141/header.gif" border=0></A></TD>
When cuteEditor gets done with it, it becomes:
<a href="http://someplace.net/dosomething.asp?tid=900226&eid=%7B%7B%7E%7Eeid%7E%7E%7D%7D&sb_id=%7B%7B%7E%7Esb_id%7E%7E%7D%7D" target="New"><img alt=" width=" src="http://www.holacomoestas.com/artsheet/v2/1473141/header.gif" border="0" height="274" /></a>
{{~~}} Stuff is place holder information that our App replace later on. It needs to stay in the format {{~~}. This didn't seem to be a problem till made the editor use absolute URLs. Below are all the configuration changes that apply to the editor.
MailingEditor.Setting["security:ImageGalleryPath"] = imageGalleryPath;
MailingEditor.Setting["security:ImageBrowserPath"] = imageGalleryPath;
MailingEditor.EnableStripStyleTagsCodeInjection = false;
MailingEditor.EnableStripScriptTags = false;
MailingEditor.EditCompleteDocument = true;
MailingEditor.ConvertHTMLTagstoLowercase = false;
MailingEditor.DisableAutoFormatting = true;
MailingEditor.UseHTMLEntities = true;
MailingEditor.URLType = CuteEditor.URLType.Absolute;
MailingEditor.SetSecurityMaxImageSize(16384);
I'm using Mac OS 10.5.6/FireFox 3.0.7
Let me know what I can do to stop this behaviour.
-Dillon