From 7651239bac357dd657806508f87d6ec5040781e0 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 7 Mar 2011 16:23:40 +0100 Subject: [PATCH] =?utf8?q?$::auth=20erst=20nach=20$::form=20und=20$::local?= =?utf8?q?e=20anlegen,=20weil=20$::auth=20beide=20ben=C3=B6tigt=20(SL/Auth?= =?utf8?q?/LDAP.pm)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Conflicts: SL/Dispatcher.pm --- SL/Dispatcher.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index a2aa87e85..8a8d5bbcf 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -156,10 +156,10 @@ 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; + $::auth = SL::Auth->new; %::called_subs = (); eval { ($routing_type, $script_name, $action) = _route_request($script_name); 1; } or return; -- 2.20.1