due to incorrect entry naming, error information from the nuSoap library is not copied into the $result variable, leading to non-informative watchdog log messages (by modules using the soapclient module)
file: drupal_soap_client.inc
class: DrupalSoapClient
method: call
$result['#error'] = t('Fault !code: !msg', array( '!code' => $result['return']['faultcode'], '!msg' => $result['return']['faultstring'] ));
Should be:
$result['#error'] = t('Fault !code: !msg', array( '!code' => $result['#return']['faultcode'], '!msg' => $result['#return']['faultstring'] ));
Comments
Comment #1
13rac1 commentedSet to Needs Review, only when a patch is attached.
This seems fixed in the current dev? Which line number is the problem at?
Comment #1.0
13rac1 commentedadded file