You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by cd...@apache.org on 2006/07/23 23:34:46 UTC

svn commit: r424830 - /portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/url/PortalURLParser.java

Author: cdoremus
Date: Sun Jul 23 14:34:46 2006
New Revision: 424830

URL: http://svn.apache.org/viewvc?rev=424830&view=rev
Log:
Fix for PLUTO-243 suggested by David Hay. Thank you!

Modified:
    portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/url/PortalURLParser.java

Modified: portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/url/PortalURLParser.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/url/PortalURLParser.java?rev=424830&r1=424829&r2=424830&view=diff
==============================================================================
--- portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/url/PortalURLParser.java (original)
+++ portals/pluto/trunk/pluto-portal-driver/src/main/java/org/apache/pluto/driver/url/PortalURLParser.java Sun Jul 23 14:34:46 2006
@@ -126,7 +126,9 @@
         	
         	// Part of the render path: append to renderPath.
         	if (!token.startsWith(PREFIX)) {
-        		renderPath.append(token);
+//        		renderPath.append(token);
+        		//Fix for PLUTO-243
+        		renderPath.append('/').append(token);
         	}
         	// Action window definition: portalURL.setActionWindow().
         	else if (token.startsWith(PREFIX + ACTION)) {