Skip to content

Commit

Permalink
Change session id on authenication field added
Browse files Browse the repository at this point in the history
Patch by fjodorver

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1689080 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
markt-asf committed Jul 3, 2015
1 parent 43f2ef3 commit d8b4deb
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -70,6 +70,8 @@ public class FormAuthModule extends TomcatAuthModule {
private Realm realm;
private LoginConfig loginConfig;

private boolean changeSessionIdOnAuthenication = true;


public FormAuthModule(Context context) {
super(context);
Expand Down Expand Up @@ -392,7 +394,7 @@ protected void forwardToLoginPage(Request request, HttpServletResponse response)


private boolean getChangeSessionIdOnAuthentication() {
return true; // FIXME
return changeSessionIdOnAuthenication ;
}


Expand Down

0 comments on commit d8b4deb

Please sign in to comment.