non secure per default

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1424235 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-12-19 23:58:53 +00:00
parent bcfecde0c8
commit 31930c1e2b
1 changed files with 1 additions and 1 deletions

View File

@ -48,6 +48,6 @@ public class RememberMeCookieSettings
this.domain = config.getString( UserConfigurationKeys.REMEMBER_ME_DOMAIN );
this.path = config.getString( UserConfigurationKeys.REMEMBER_ME_PATH );
this.enabled = config.getBoolean( UserConfigurationKeys.REMEMBER_ME_ENABLED );
config.getBoolean( UserConfigurationKeys.REMEMBERME_SECURE );
config.getBoolean( UserConfigurationKeys.REMEMBERME_SECURE, false );
}
}