Ticket #1440 (new defect)
IE6 Security error on https (This page contains both secure and nonsecure items)
| Reported by: | guest | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.97 |
| Component: | Browsers_InternetExplorer | Version: | trunk |
| Severity: | normal | Keywords: | IE6, SSL, HTTPS |
| Cc: |
Description
Here is only fix for the IE6 Security error (This page contains both secure and nonsecure items) that works for me -> change src of every iframe-element from
about:blank
to
javascript:false;
For example in ExtendedFileManager at line 154 change:
<iframe src="about:blank" name="imgManager" id="imgManager" class="imageFrame" scrolling="auto" title="Image Selection" frameborder="0"></iframe>
to
<iframe src="javascript:false;" name="imgManager" id="imgManager" class="imageFrame" scrolling="auto" title="Image Selection" frameborder="0"></iframe>
And maybe the most important is in XinhaDialog?.js at line 187:
backG.src = "about:blank";
to
backG.src = "javascript:false;";
Change History
Note: See
TracTickets for help on using
tickets.
