X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/bbb2383f64acde4451b241c200600e4bb33a9030..caa629de1287f86231fa7a468b53372b38edc131:/SL/Auth/SessionValue.pm diff --git a/SL/Auth/SessionValue.pm b/SL/Auth/SessionValue.pm index a3264e52d..0950a46b9 100644 --- a/SL/Auth/SessionValue.pm +++ b/SL/Auth/SessionValue.pm @@ -46,6 +46,7 @@ sub _fetch { my ($self) = @_; return $self if $self->{fetched}; + return $self if !$self->{auth}->session_tables_present; my $dbh = $self->{auth}->dbconnect; my $query = qq|SELECT sess_value FROM auth.session_content WHERE (session_id = ?) AND (sess_key = ?)|;