Description
From the code for org.apache.tapestry.services.impl.EngineServiceOuterProxy:
public ILink getLink(boolean post, Object parameter)
{ return _delegate.getLink(false, parameter); }Note that the "post" parameter is ignored and false is always passed through to the delegate. Not sure what the extent of the downstream effects is, but I've run in to one: this prevents persistence strategies from ever acting on a post=true case.
The same code issue exists in EngineServiceInnerProxy as well. Making the obvious changes in both cases seems to work great.
Attachments
Issue Links
- is related to
-
TAPESTRY-787 Port late bug fixes from 4.0 branch to trunk
- Closed