Ticket #2356: 2356.patch
File 2356.patch, 1.2 KB (added by , 15 years ago) |
---|
-
_whatsnew.html
82 82 in the Paste dialog.</li> 83 83 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1907">#1907</a>] Fixed sporadic 84 84 "FCKeditorAPI is not defined" errors in Firefox 3.</li> 85 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2356">#2356</a>] Fixed access denied 86 error in IE7 when FCKeditor is launched from local filesystem.</li> 85 87 </ul> 86 88 <p> 87 89 <a href="_whatsnew_history.html">See previous versions history</a></p> -
editor/_source/internals/fcktools_ie.js
75 75 { 76 76 case 'XmlHttp' : 77 77 // Try the native XMLHttpRequest introduced with IE7. 78 try { return new XMLHttpRequest() ; } catch (e) {} 78 if ( document.location.protocol != 'file:' ) 79 try { return new XMLHttpRequest() ; } catch (e) {} 79 80 80 81 aObjs = [ 'MSXML2.XmlHttp', 'Microsoft.XmlHttp' ] ; 81 82 break ;