Revision 596459af
Von Moritz Bunkus vor mehr als 14 Jahren hinzugefügt
SL/Dispatcher.pm | ||
---|---|---|
33 | 33 |
$::lxdebug->enter_sub; |
34 | 34 |
my $template = shift; |
35 | 35 |
my $error_type = shift || ''; |
36 |
my $locale = Locale->new($::language, 'all');
|
|
36 |
$::locale = Locale->new($::language, 'all');
|
|
37 | 37 |
$::form->{error} = $::locale->text('The session is invalid or has expired.') if ($error_type eq 'session'); |
38 | 38 |
$::form->{error} = $::locale->text('Incorrect password!.') if ($error_type eq 'password'); |
39 | 39 |
$::myconfig{countrycode} = $::language; |
Auch abrufbar als: Unified diff
Das globale Locale-Objekt im Fehlerfall neu initialisieren; das lokale wurde nicht weiter verwendet