Okay, turns out to have actually been fixed in 6.13, but caching was messing me up.
It was the fix in AbstractBookmarkableMapper which makes it work. It seems like I can wrap the request mapper used in the tester to put the parameters back on in the same situation, which works for 1.5. TX @@ -420,8 +424,11 @@ public abstract class AbstractBookmarkableMapper extends AbstractComponentMapper requestListenerInterfaceToString(handler.getListenerInterface()), handler.getComponentPath(), handler.getBehaviorIndex()); + PageParameters parameters = getRecreateMountedPagesAfterExpiry() ? new PageParameters( + handler.getPage().getPageParameters()).mergeWith(handler.getPageParameters()) + : handler.getPageParameters(); UrlInfo urlInfo = new UrlInfo(new PageComponentInfo(pageInfo, componentInfo), - pageClass, handler.getPageParameters()); + pageClass, parameters); return buildUrl(urlInfo); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
