Postponed (maintainer needs more info)
Project:
SOAP Client
Version:
6.x-1.0-beta2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Aug 2011 at 15:23 UTC
Updated:
9 Dec 2011 at 19:58 UTC
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