2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 14:47:00 +00:00

lib/FHEM/Core/Authentication/Passwords.pm: Change Commandref

git-svn-id: https://svn.fhem.de/fhem/trunk@24468 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2021-05-18 06:03:44 +00:00
parent 84f5c6ca75
commit 52c325315f
2 changed files with 7 additions and 3 deletions

View File

@ -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.

View File

@ -208,10 +208,12 @@ FHEM::Core::Authentication::Passwords->new(<INSTANZTYPE>);
=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