https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23865
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |ommunity.org Status|Needs Signoff |Failed QA --- Comment #3 from Jonathan Druart <[email protected]> --- It's "is_password_valid", and it is used in other places: Koha/AuthUtils.pm: ( $is_valid, undef ) = is_password_valid( $password ); Koha/Patron.pm: my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $password ); installer/onboarding.pl: my ( $is_valid, $passworderror) = Koha::AuthUtils::is_password_valid( $firstpassword ); members/memberentry.pl: my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $password ); opac/opac-memberentry.pl: my ( $is_valid, $error ) = Koha::AuthUtils::is_password_valid( $borrower->{password} ); -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
