diff --git a/fhem/CHANGED b/fhem/CHANGED index a9f2f1fe8..77a3c013c 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,7 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: lib/FHEM/Core/Authentication/Passwords.pm + change commandref - bugfix: 98_WeekdayTimer: send delay also applied at startup - feature: 73_AutoShuttersControl: new RainProtection package - change: 49_IPCAM: allow zero for snapshots attribute, and some cleanup. diff --git a/fhem/lib/FHEM/Core/Authentication/Passwords.pm b/fhem/lib/FHEM/Core/Authentication/Passwords.pm index f6e4df491..9dbcca6fe 100644 --- a/fhem/lib/FHEM/Core/Authentication/Passwords.pm +++ b/fhem/lib/FHEM/Core/Authentication/Passwords.pm @@ -208,10 +208,12 @@ FHEM::Core::Authentication::Passwords->new(); =head1 SYNOPSIS use FHEM::Core::Authentication::Passwords qw(:ALL); - our $passwd = FHEM::Core::Authentication::Passwords->new(); - you can also save the password object in the instance hash - our $hash->{helper}->{passwdobj} = FHEM::Core::Authentication::Passwords->new(); + the password object in the instance hash + Define() { + ... + our $hash->{helper}->{passwdobj} = FHEM::Core::Authentication::Passwords->new($hash->{TYPE}); + ... =head1 DESCRIPTION