• kherge

    (@kherge)


    This bit of code in logic.php fails:

    if( ! wp_login( $user->user_login, md5($user->user_pass), true ) ) {
    					$this->error = 'User was created fine, but wp_login() for the new user failed. '
    						. 'This is probably a bug.';
    					$this->action= 'error';
    					$this->core->log->error( $this->error );
    					break;
    				}

    Do I need to enter a password in the password box? This should be described above the input text box for the OpenID URL.

Viewing 2 replies - 1 through 2 (of 2 total)
  • patch has been applied in just-released version (2.1.8). Thanks.

    http://wordpress.org/extend/plugins/openid/other_notes/

    peeloo

    (@peeloo)

    I’ve replace the code by the following lines, and it works fine now 🙂

    if( ! wp_login($oid_user_data['user_login'], $oid_user_data['user_pass'], true ) ) {
    					$this->error = 'User was created fine, but wp_login() for the new user failed. '
    						. 'This is probably a bug.';
    					$this->action= 'error';
    					//$this->core->log->error( $this->error );
    					break;
    				}
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘OpenID Plugin (WP 2.5) calls non-existant error() method.’ is closed to new replies.