I have a fork of this plugin in use at our university, and an upgrade to php 5.5 was causing the passwords not to be set for new users by the check_passwords callback. PHP 5.4 deprecated call-time pass-by-reference, and reference call must now be in the function definition.
I've modified my fork too much for a pull request, but just adding reference flags for $pass1 and $pass2 was enough.
I have a fork of this plugin in use at our university, and an upgrade to php 5.5 was causing the passwords not to be set for new users by the check_passwords callback. PHP 5.4 deprecated call-time pass-by-reference, and reference call must now be in the function definition.
I've modified my fork too much for a pull request, but just adding reference flags for $pass1 and $pass2 was enough.