Revision b6fd15a8
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 |
use SL::Layout::None; |
|
39 | 39 |
|
40 | 40 |
# Trailing new line is added so that Perl will not add the line |
41 | 41 |
# number 'die' was called in. |
... | ... | |
184 | 184 |
$::instance_conf = SL::InstanceConfiguration->new; |
185 | 185 |
$::request = { |
186 | 186 |
cgi => CGI->new({}), |
187 |
layout => SL::Controller::Layout::None->new,
|
|
187 |
layout => SL::Layout::None->new, |
|
188 | 188 |
}; |
189 | 189 |
|
190 | 190 |
my $session_result = $::auth->restore_session; |
Auch abrufbar als: Unified diff
Layout package names refactored
SL::Controller::Layout::* -> SL::Layout::*
SL::Controller::Layout -> SL::Layout::Dispatcher