[
https://issues.apache.org/jira/browse/WICKET-2103?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Juergen Donnerstag resolved WICKET-2103.
----------------------------------------
Resolution: Fixed
Fix Version/s: 1.4-RC3
Assignee: Juergen Donnerstag
thanks
> SignInPanel.onSignInSucceeded call the correct method on IPageFactory
> ---------------------------------------------------------------------
>
> Key: WICKET-2103
> URL: https://issues.apache.org/jira/browse/WICKET-2103
> Project: Wicket
> Issue Type: Bug
> Components: wicket-auth-roles
> Reporter: Francois Fernandes
> Assignee: Juergen Donnerstag
> Fix For: 1.4-RC3
>
>
> The onSignInSucceeded method is calling newPage(Class, PageParameters) with
> PageParameters = null. Instead of this, the call should be changed to use the
> newPage(Class) method instead.
> setResponsePage(getApplication().getSessionSettings().getPageFactory().newPage(getApplication().getHomePage(),
> (PageParameters)null));
> should be changed to
> setResponsePage(getApplication().getSessionSettings().getPageFactory().newPage(getApplication().getHomePage()));
> This is releated to WICKET-2092.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.