informations is correctly stored into session but not well displayed by manager (add _utime, remove useless code)

This commit is contained in:
Thomas CHEMINEAU 2010-05-04 15:55:48 +00:00
parent 5eb7895dac
commit c935584300
2 changed files with 3 additions and 2 deletions

View File

@ -1110,6 +1110,9 @@ sub setAuthSessionInfo {
# Get the current authentication module
$self->{sessionInfo}->{_auth} = $self->get_module("auth");
# Store primary informations
$self->{sessionInfo}->{'_utime'} = time();
return $self->SUPER::setAuthSessionInfo();
}

View File

@ -117,8 +117,6 @@ sub setSessionInfo {
else {
$self->abort('Only hash reference are supported now in exportedVars');
}
# Store other informations in session
$self->{sessionInfo}->{'_user'} = $self->{user};
PE_OK;
}