• inside ultimate-member/includes/core/um-actions-login.php
    line 71

    wp_authenticate_user filter need be called with user object as first argument, but the user name is passed instead. It breaks interoperability with some plugins like wp appove user… simple fix:

    $user = apply_filters( ‘authenticate’, null, $user_name, $args[‘user_password’] );

    $authenticate_user = apply_filters( ‘wp_authenticate_user’, $user_name $user , $args[‘user_password’] );

    • This topic was modified 5 years, 9 months ago by mitkoradev.
    • This topic was modified 5 years, 9 months ago by mitkoradev.
  • The topic ‘Log In failed – Bug Fix – 2.0.39 – calling wp_authenticate_user’ is closed to new replies.