diff options
| author | Arne Schröder <schroeder@data-quest.de> | 2026-03-04 12:51:32 +0100 |
|---|---|---|
| committer | Arne Schröder <schroeder@data-quest.de> | 2026-03-04 12:51:32 +0100 |
| commit | a870b2f223f9794e67dc3217d0026e449238740b (patch) | |
| tree | f14bda34c160cca37622c7948fc6bca531bd6288 /lib/ilias_interface | |
| parent | 364fb43c6288e5a2c51ae88995aab0b6c62a1f61 (diff) | |
fix user data handling on soap fault, re #5596issue-5596
Diffstat (limited to 'lib/ilias_interface')
| -rw-r--r-- | lib/ilias_interface/StudipSoapClient.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ilias_interface/StudipSoapClient.php b/lib/ilias_interface/StudipSoapClient.php index c405b9f..a92d1e5 100644 --- a/lib/ilias_interface/StudipSoapClient.php +++ b/lib/ilias_interface/StudipSoapClient.php @@ -32,7 +32,7 @@ class StudipSoapClient try { $result = $this->soap_client->__soapCall($method, $params); } catch (SoapFault $fault) { - $this->faultstring = $method . ": " . $fault->faultstring; + $this->faultstring = $fault->faultstring; if (!in_array(mb_strtolower($this->faultstring), ["session not valid","session invalid", "session idled"])) { unset($params['password']); $this->error .= sprintf(_("SOAP-Fehler, Funktion \"%s\":"), $method) . " " . $fault->faultstring . " (" . $fault->faultcode . ")".print_r($params,1); |
