Revision 3ab26ffc
Von Sven Schöling vor etwa 12 Jahren hinzugefügt
SL/Dispatcher.pm | ||
---|---|---|
81 | 81 |
$::form->{error} = $::locale->text('The session is invalid or has expired.') if ($error_type eq 'session'); |
82 | 82 |
$::form->{error} = $::locale->text('Incorrect password!') if ($error_type eq 'password'); |
83 | 83 |
|
84 |
$::form->header; |
|
84 |
$::form->header(no_menu => 1);
|
|
85 | 85 |
print $::form->parse_html_template($template, \%params); |
86 | 86 |
$::lxdebug->leave_sub; |
87 | 87 |
|
... | ... | |
225 | 225 |
::run($session_result); |
226 | 226 |
|
227 | 227 |
} else { |
228 |
show_error('login_screen/user_login', 'session') if SL::Auth::SESSION_EXPIRED == $session_result; |
|
228 |
if (SL::Auth::SESSION_EXPIRED == $session_result) { |
|
229 |
print $::request->{cgi}->redirect('controller.pl?action=LoginScreen/user_login&error=session'); |
|
230 |
} |
|
229 | 231 |
|
230 | 232 |
my %auth_result = $self->{auth_handler}->handle( |
231 | 233 |
routing_type => $routing_type, |
Auch abrufbar als: Unified diff
Bei Loginfehlern das Menü nicht mitrendern