From a870b2f223f9794e67dc3217d0026e449238740b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20Schr=C3=B6der?= Date: Wed, 4 Mar 2026 12:51:32 +0100 Subject: fix user data handling on soap fault, re #5596 --- lib/ilias_interface/StudipSoapClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.0