#1969: FCKXml.LoadUrl fails on non-http pages
----------------------+-----------------------------------------------------
 Reporter:  develyoy  |        Type:  Bug    
   Status:  new       |    Priority:  Low    
Milestone:            |   Component:  General
  Version:            |    Keywords:         
----------------------+-----------------------------------------------------
 In Internet Explorer, using an alternative way to get to HTML pages, (e.g.
 a plugin implementing IInternetProtocol), for security reasons,
 XmlHttpRequest.responseXML is empty, but responseText works, so I
 generally update fckeditorcode_ie.js
 "if (B.status==200||B.status==304) this.DOMDocument=B.responseXML;else if
 (B.status==0&&B.readyState==4){"
 to
 "if (B.status==200||B.status==304) this.DOMDocument=B.responseXML;if
 ((B.status==0&&B.readyState==4)||this.DOMDocument.firstChild==null){"
 to have the responseText loaded in a new document

-- 
Ticket URL: <http://dev.fckeditor.net/ticket/1969>
FCKeditor <http://www.fckeditor.net>
The text editor for Internet
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
FCKeditor-Trac mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fckeditor-trac

Reply via email to