Revision 72887d24
Von Sven Schöling vor etwa 13 Jahren hinzugefügt
SL/Auth.pm | ||
---|---|---|
$self->{RIGHTS} = { };
|
||
$self->{unique_counter} = 0;
|
||
$self->{column_information} = SL::Auth::ColumnInformation->new(auth => $self);
|
||
$self->{authenticator}->reset;
|
||
}
|
||
|
||
sub get_user_dbh {
|
SL/Auth/DB.pm | ||
---|---|---|
return $self;
|
||
}
|
||
|
||
sub reset {
|
||
# nothing to do here
|
||
}
|
||
|
||
sub authenticate {
|
||
$main::lxdebug->enter_sub();
|
||
|
SL/Auth/LDAP.pm | ||
---|---|---|
return $self;
|
||
}
|
||
|
||
sub reset {
|
||
my ($self) = @_;
|
||
$self->{ldap} = undef;
|
||
$self->{dn_cache} = { };
|
||
}
|
||
|
||
sub _connect {
|
||
$main::lxdebug->enter_sub();
|
||
|
Auch abrufbar als: Unified diff
LDAP Authentifikation zwischen requests korrekt resetten.