You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by aj...@apache.org on 2010/02/14 19:35:17 UTC

svn commit: r910058 - /incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/TemplateResolution.java

Author: ajaquith
Date: Sun Feb 14 18:35:17 2010
New Revision: 910058

URL: http://svn.apache.org/viewvc?rev=910058&view=rev
Log:
Fixed bug in TemplateResolution that prevented some JSPs from resolving.

Modified:
    incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/TemplateResolution.java

Modified: incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/TemplateResolution.java
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/TemplateResolution.java?rev=910058&r1=910057&r2=910058&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/TemplateResolution.java (original)
+++ incubator/jspwiki/trunk/src/java/org/apache/wiki/ui/stripes/TemplateResolution.java Sun Feb 14 18:35:17 2010
@@ -42,7 +42,7 @@
         String path = templates.getTemplateResources().get( getPath() );
         if( path == null )
         {
-            path = "/templates/default/" + path;
+            path = "/templates/default/" + getPath();
         }
         setPath( path );