From d06d918a16ba787a440fa6c6f77af81855b6bf68 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Wed, 2 Mar 2011 09:21:24 +0100 Subject: [PATCH] Vor jedem Request neue Instanz von $::auth anlegen MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit $::auth cachet Informationen wie Gruppenzugehörigkeit und -rechte. Das führt dazu, dass Änderungen im Adminbereich für laufende FCGI-Prozesse nicht sichtbar waren, wenn die entsprechende Gruppe schon einmal abgefragt wurde. --- SL/Dispatcher.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 6512f0312..b48506342 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -84,7 +84,6 @@ sub pre_startup_setup { { no warnings 'once'; $::lxdebug = LXDebug->new; - $::auth = SL::Auth->new; $::form = undef; %::myconfig = (); %::called_subs = (); # currently used for recursion detection @@ -157,6 +156,7 @@ sub handle_request { $self->unrequire_bin_mozilla; + $::auth = SL::Auth->new; $::cgi = CGI->new(''); $::locale = Locale->new($::lx_office_conf{system}->{language}); $::form = Form->new; -- 2.20.1