Revision 85b53fd2
Von Moritz Bunkus vor etwa 14 Jahren hinzugefügt
bin/mozilla/admin.pl | ||
---|---|---|
79 | 79 |
$form->{error_message} = $locale->text('Incorrect Password!'); |
80 | 80 |
adminlogin(); |
81 | 81 |
} else { |
82 |
$auth->create_or_refresh_session() if ($auth->session_tables_present()); |
|
82 |
if ($auth->session_tables_present()) { |
|
83 |
$::auth->set_session_value('rpw', $::form->{rpw}); |
|
84 |
$::auth->create_or_refresh_session(); |
|
85 |
} |
|
83 | 86 |
call_sub($locale->findsub($form->{action})); |
84 | 87 |
} |
85 | 88 |
} elsif ($auth->authenticate_root($form->{rpw}, 0) == $auth->OK()) { |
Auch abrufbar als: Unified diff
Nach Anmeldung an Administrationsbereich Passwort in Session speichern