Ticket #820 (closed defect: fixed)
Secure/insecure warning in popups
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
Note: See
TracTickets for help on using
tickets.
