• Here is a small change that I think is necessary.

    ============ Old
    if (is_object($response[$options[‘auth_user_dets’]])) {
    $response[‘user’] = Soap_Auth::object2array($response[‘user’]);
    }

    ============ New
    if (is_object($response[$options[‘auth_user_dets’]])) {
    $response[$options[‘auth_user_dets’]] = Soap_Auth::object2array($response[$options[‘auth_user_dets’]]);
    }

    http://ww.wp.xz.cn/extend/plugins/soap-authentication/

The topic ‘[Plugin: SOAP Authentication] Small code change’ is closed to new replies.