Author: apetrelli
Date: Thu Aug 31 04:44:32 2006
New Revision: 438873

URL: http://svn.apache.org/viewvc?rev=438873&view=rev
Log:
Fixed some missing starting "/" at the start of the values
Modified:
    struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testput.jsp

Modified: struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testput.jsp
URL: 
http://svn.apache.org/viewvc/struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testput.jsp?rev=438873&r1=438872&r2=438873&view=diff
==============================================================================
--- struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testput.jsp (original)
+++ struts/sandbox/trunk/tiles/tiles-test/src/main/webapp/testput.jsp Thu Aug 
31 04:44:32 2006
@@ -2,6 +2,6 @@
 
 <tiles:insert template="/layout.jsp">
   <tiles:put name="title"  value="This is the title." />
-  <tiles:put name="header" value="header.jsp" />
-  <tiles:put name="body"   value="body.jsp" />
+  <tiles:put name="header" value="/header.jsp" />
+  <tiles:put name="body"   value="/body.jsp" />
 </tiles:insert>


Reply via email to