in the TemplateUsers/login.ctp, line 26, there is
if (Configure::check('Users.RememberMe.active')) {
....
}
and regardless of the value of the Users.RememberMe.active, the checkbox is displayed. I think that should be changed to
if (Configure::read('Users.RememberMe.active')) {
....
}
so if i set
Configure::write('Users.RememberMe.active',false);
they 'remember me' checkbox is not visible and probably this functionality is disabled
in the TemplateUsers/login.ctp, line 26, there is
and regardless of the value of the Users.RememberMe.active, the checkbox is displayed. I think that should be changed to
so if i set
they 'remember me' checkbox is not visible and probably this functionality is disabled