You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered: