@@ -, +, @@ Instead it should be #hash it --- Koha/AuthUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/AuthUtils.pm +++ a/Koha/AuthUtils.pm @@ -64,7 +64,7 @@ sub hash_password { # Set the cost to 8 and append a NULL $settings = '$2a$08$'.en_base64(generate_salt('weak', 16)); } - # Encrypt it + # Hash it return bcrypt($password, $settings); } --