You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2006/04/29 15:41:12 UTC

svn commit: r398151 - /myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp

Author: imario
Date: Sat Apr 29 06:41:11 2006
New Revision: 398151

URL: http://svn.apache.org/viewcvs?rev=398151&view=rev
Log:
fixed missing body tag so the extensionFilter can do its job

Modified:
    myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp

Modified: myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp
URL: http://svn.apache.org/viewcvs/myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp?rev=398151&r1=398150&r2=398151&view=diff
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp (original)
+++ myfaces/tomahawk/trunk/sandbox/examples/src/main/webapp/home.jsp Sat Apr 29 06:41:11 2006
@@ -6,7 +6,7 @@
 <html>
 
     <%@include file="inc/head.inc" %>
-
+<body>
     <f:view>
 
         <h:panelGrid>
@@ -103,5 +103,5 @@
         </h:panelGrid>
     </f:view>
    
-
+</body>
 </html>