Revision 4a12c839
Von Sven Schöling vor etwa 12 Jahren hinzugefügt
SL/Dispatcher.pm | ||
---|---|---|
35 | 35 |
use SL::Helper::DateTime; |
36 | 36 |
use SL::InstanceConfiguration; |
37 | 37 |
use SL::Template::Plugin::HTMLFixes; |
38 |
use SL::Controller::Layout::None; |
|
38 | 39 |
|
39 | 40 |
# Trailing new line is added so that Perl will not add the line |
40 | 41 |
# number 'die' was called in. |
... | ... | |
181 | 182 |
$::locale = Locale->new($::lx_office_conf{system}->{language}); |
182 | 183 |
$::form = Form->new; |
183 | 184 |
$::instance_conf = SL::InstanceConfiguration->new; |
184 |
$::request = { cgi => CGI->new({}) }; |
|
185 |
$::request = { |
|
186 |
cgi => CGI->new({}), |
|
187 |
layout => SL::Controller::Layout::None->new, |
|
188 |
}; |
|
185 | 189 |
|
186 | 190 |
my $session_result = $::auth->restore_session; |
187 | 191 |
$::auth->create_or_refresh_session; |
Auch abrufbar als: Unified diff
Layouts eingeführt
bin/mozilla/menu* -> SL/Controller/Layout/*