https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19845
--- Comment #10 from Jonathan Druart <[email protected]> --- (In reply to Fridolin SOMERS from comment #9) > This line has been changed by Bug 18298: Add server-side checks and refactor > stuffs > Note sure it can be applied on 17.05.x yes the bug exists in 17.05.x The same fixes would be: - $borrower{password} = random_string(".........."); + $borrower{password} = random_string("..........") unless $borrower{password}; The problem is that we cannot force the user to choose a strong password (and default min password length is 3) -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
