• When WordPress is set in development mode (WP_DEBUG is true) to show errors, I noticed this plugin returns a php error when attempting to log in with an incorrect password. I changed this in the code and it appears to work now:

    function checkme($ha1, $password, $hash, $user_id) {

    add_filter(‘check_password’, ‘checkme’, 10, 4);

    Can you confirm?

The topic ‘Works well but small plugin error’ is closed to new replies.