[Plugin: SOAP Authentication] Small code change
-
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’]]);
}
The topic ‘[Plugin: SOAP Authentication] Small code change’ is closed to new replies.