Wenn noch gar kein Passwort fuer den Admin gesetzt ist, dann Login zulassen.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 16 Aug 2006 11:09:35 +0000 (11:09 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 16 Aug 2006 11:09:35 +0000 (11:09 +0000)
bin/mozilla/admin.pl

index 2632aff..f100267 100644 (file)
@@ -1151,7 +1151,7 @@ sub change_password {
 sub check_password {
   $root = new User "$memberfile", $form->{root};
 
-  if (!$root->{password} || ($root->{password} ne $form->{rpw})) {
+  if (!defined($root->{password}) || ($root->{password} ne $form->{rpw})) {
     $form->error($locale->text('Incorrect Password!'));
   }