X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/470a8fa1710b22e2b381eef4cacb01bebaeff725..574c32c009b187782497bf170204dc7a8976b2e0:/SL/Auth.pm diff --git a/SL/Auth.pm b/SL/Auth.pm index 978fe497d..3b14def5d 100644 --- a/SL/Auth.pm +++ b/SL/Auth.pm @@ -36,6 +36,15 @@ sub new { return $self; } +sub reset { + my ($self, %params) = @_; + + $self->{SESSION} = { }; + $self->{FULL_RIGHTS} = { }; + $self->{RIGHTS} = { }; + $self->{unique_counter} = 0; +} + sub get_user_dbh { my ($self, $login) = @_; my %user = $self->read_user($login);