You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by an...@apache.org on 2007/11/17 15:40:52 UTC

svn commit: r595956 - /tapestry/tapestry4/trunk/tapestry-contrib/src/java/org/apache/tapestry/contrib/ajax/XTileService.java

Author: andyhot
Date: Sat Nov 17 06:40:52 2007
New Revision: 595956

URL: http://svn.apache.org/viewvc?rev=595956&view=rev
Log:
TAPESTRY-1833 : XTile urls should have always preserved state

Modified:
    tapestry/tapestry4/trunk/tapestry-contrib/src/java/org/apache/tapestry/contrib/ajax/XTileService.java

Modified: tapestry/tapestry4/trunk/tapestry-contrib/src/java/org/apache/tapestry/contrib/ajax/XTileService.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-contrib/src/java/org/apache/tapestry/contrib/ajax/XTileService.java?rev=595956&r1=595955&r2=595956&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-contrib/src/java/org/apache/tapestry/contrib/ajax/XTileService.java (original)
+++ tapestry/tapestry4/trunk/tapestry-contrib/src/java/org/apache/tapestry/contrib/ajax/XTileService.java Sat Nov 17 06:40:52 2007
@@ -73,7 +73,7 @@
         parameters.put(ServiceConstants.PAGE, component.getPage().getPageName());
         parameters.put(ServiceConstants.COMPONENT, component.getIdPath());
 
-        return _linkFactory.constructLink(this, false, parameters, false);
+        return _linkFactory.constructLink(this, false, parameters, true);
     }
 
     public void service(IRequestCycle cycle) throws IOException