Revision 33fd3fa6
Von Moritz Bunkus vor mehr als 18 Jahren hinzugefügt
bin/mozilla/admin.pl | ||
---|---|---|
1151 | 1151 |
sub check_password { |
1152 | 1152 |
$root = new User "$memberfile", $form->{root}; |
1153 | 1153 |
|
1154 |
if (!$root->{password} || ($root->{password} ne $form->{rpw})) {
|
|
1154 |
if (!defined($root->{password}) || ($root->{password} ne $form->{rpw})) {
|
|
1155 | 1155 |
$form->error($locale->text('Incorrect Password!')); |
1156 | 1156 |
} |
1157 | 1157 |
|
Auch abrufbar als: Unified diff
Wenn noch gar kein Passwort fuer den Admin gesetzt ist, dann Login zulassen.