MDL-12561 Fix IE6 "insecure items" warning in SSL sites using htmlarea

The HTMLArea editor uses the about:blank URL for blank pages, which
IE6 erroneously considers insecure. This commit replaces about:blank
with lib/editor/htmlarea/blank.html instead.


Author: Jonathan Harker <[email protected]>
This commit is contained in:
jonathanharker
2009-05-21 02:28:33 +00:00
parent 3e16e2fd1d
commit 369c4ab13d
5 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -721,7 +721,7 @@ HTMLArea.prototype.generate = function () {
// create the IFRAME
var iframe = document.createElement("iframe");
iframe.src = "about:blank";
iframe.src = "<?php echo $CFG->wwwroot ?>/lib/editor/htmlarea/blank.html";
iframe.className = "iframe";