Ticket #820 (closed defect: fixed)

Opened 7 years ago

Last modified 7 years ago

Secure/insecure warning in popups

Reported by: jkronika@… Owned by: gogo
Priority: normal Milestone:
Component: Xinha Core Version: trunk
Severity: normal Keywords: secure,insecure,popup,image,insert,https,internet explorer,ie,warning
Cc:

Description

As with [issue114], there is a warning in the insert_image.html popup under https in IE. I've fixed this locally by correcting the src attribute. It had been empty (src=""), but should have referenced the blank.html file in the same folder (src="blank.html").

Here's a diff:

Index: insert_image.html
===================================================================
--- insert_image.html   (revision 516)
+++ insert_image.html   (working copy)
@@ -159,7 +159,9 @@
  <tr>
   <td valign="bottom">
     <div class="fr">Image Preview:</div>
-    <iframe name="ipreview" id="ipreview" frameborder="0" style="border : 1px solid gray;" height="200" width="300" src=""></iframe>
+    <iframe src="blank.html" name="ipreview" id="ipreview"
+            height="200" width="300" frameborder="0"
+            style="border : 1px solid gray;"></iframe>
   </td>
   <td valign="bottom" style="text-align: right">
     <button type="button" name="ok" onclick="return onOK();">OK</button><br>
@@ -169,4 +171,4 @@
 </table>
 </form>
 </body>
-</html>
\ No newline at end of file
+</html>

Change History

Changed 7 years ago by wymsy

  • status changed from new to closed
  • resolution set to fixed

Applied in changeset:553.

Note: See TracTickets for help on using tickets.