Author: ivaynberg
Date: Fri Feb  5 02:31:00 2010
New Revision: 906771

URL: http://svn.apache.org/viewvc?rev=906771&view=rev
Log:
WICKET-2718 RedirectPage does not work in IE. for some reason xml prolog caused 
IE to fail. removed prolog.
Issue: WICKET-2718

Modified:
    
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/markup/html/pages/RedirectPage.html

Modified: 
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/markup/html/pages/RedirectPage.html
URL: 
http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/markup/html/pages/RedirectPage.html?rev=906771&r1=906770&r2=906771&view=diff
==============================================================================
--- 
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/markup/html/pages/RedirectPage.html
 (original)
+++ 
wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/markup/html/pages/RedirectPage.html
 Fri Feb  5 02:31:00 2010
@@ -1,4 +1,5 @@
-<?xml version="1.0" encoding="UTF-8" ?>
+<!-- prolog breaks internet explorer, WICKET-2718 -->
+<!-- < ? xml version="1.0" encoding="UTF-8" ? > -->
 <!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
@@ -16,4 +17,4 @@
    limitations under the License.
 -->
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd";>
-<html><head><meta wicket:id="redirect" http-equiv="refresh" content="0; 
url=app"></head></html>
\ No newline at end of file
+<html><head><meta wicket:id="redirect" http-equiv="refresh" content="0; 
url=app"/></head><body></body></html>
\ No newline at end of file


Reply via email to