Skip to content
Snippets Groups Projects
Commit a70db35c authored by felmer's avatar felmer
Browse files

remove potentially set parameter 'anonymous'

SVN: 20897
parent 49105eec
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,7 @@ public final class LoginAction implements IDelegatedAction ...@@ -24,6 +24,7 @@ public final class LoginAction implements IDelegatedAction
public void execute() public void execute()
{ {
UrlBuilder urlBuilder = Window.Location.createUrlBuilder(); UrlBuilder urlBuilder = Window.Location.createUrlBuilder();
urlBuilder.removeParameter(BasicConstant.ANONYMOUS_KEY);
urlBuilder.setParameter(BasicConstant.ANONYMOUS_KEY, "false"); urlBuilder.setParameter(BasicConstant.ANONYMOUS_KEY, "false");
String url = urlBuilder.buildString(); String url = urlBuilder.buildString();
Window.Location.replace(url); Window.Location.replace(url);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment