Revision b6872f10
Von Bernd Bleßmann vor mehr als 5 Jahren hinzugefügt
SL/Controller/LoginScreen.pm | ||
---|---|---|
58 | 58 |
|
59 | 59 |
%::myconfig = $login ? $::auth->read_user(login => $login) : (); |
60 | 60 |
$::locale = Locale->new($::myconfig{countrycode}) if $::myconfig{countrycode}; |
61 |
SL::Dispatcher::AuthHandler::User->new->handle; |
|
61 |
my $auth_result = SL::Dispatcher::AuthHandler::User->new->handle; |
|
62 |
|
|
63 |
$::dispatcher->end_request unless $auth_result; |
|
62 | 64 |
|
63 | 65 |
$::request->layout(SL::Layout::Dispatcher->new(style => $::myconfig{menustyle})); |
64 | 66 |
|
Auch abrufbar als: Unified diff
LoginScreen: Request beenden, wenn Benutzer nicht authentifiziert wird