From 1bbdce28f6e48cc31d9ff7c9a303ee1cfae8baed Mon Sep 17 00:00:00 2001 From: oesi Date: Tue, 20 Oct 2015 18:44:16 +0200 Subject: [PATCH] =?UTF-8?q?Returnwert=20bei=20SOAP=20Fehler=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/moodle24_user.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/moodle24_user.class.php b/include/moodle24_user.class.php index b0b9c6e7b..810039730 100644 --- a/include/moodle24_user.class.php +++ b/include/moodle24_user.class.php @@ -590,6 +590,7 @@ class moodle24_user extends basis_db catch (SoapFault $E) { $this->errormsg.="SOAP Fehler beim Anlegen der Gruppe: ".$E->faultstring; + return false; } } @@ -742,6 +743,7 @@ class moodle24_user extends basis_db catch (SoapFault $E) { $this->errormsg.="SOAP Fehler beim Zuordnen der User: ".$E->faultstring.' '.(isset($E->detail)?$E->detail:''); + return false; } return true;