diff --git a/info.textgrid.middleware.tgauth.webauth/tglib/RBAC.class.php b/info.textgrid.middleware.tgauth.webauth/tglib/RBAC.class.php
index a551fececb547c15f6b90223f3a75f2fffd71a1a..2e7b2e4030d780764c5a496f40af6e53b17302cf 100644
--- a/info.textgrid.middleware.tgauth.webauth/tglib/RBAC.class.php
+++ b/info.textgrid.middleware.tgauth.webauth/tglib/RBAC.class.php
@@ -133,7 +133,7 @@ class RBAC {
 
     } catch( SoapFault $f ) {
       return array("success" => FALSE,
-		   "detail" => "SOAP FAULT (authenticate)!: " . $f->faultcode . " / " . $f->faultstring . " / " . $f->detail,
+		   "detail" => "SOAP FAULT (authenticate)!: " . $f->faultcode . " / " . $f->faultstring,
 		   "rbachash" => $rbachash);
       exit;
     }
@@ -161,7 +161,7 @@ class RBAC {
     } catch( SoapFault $f ) {
       return array("success" => FALSE,
 		   "rbachash" => $rbachash,
-		   "detail" => "SOAP FAULT (tgAddActiveRole)!: " . $f->faultcode . " / " . $f->faultstring . " / " . $f->detail);
+		   "detail" => "SOAP FAULT (tgAddActiveRole)!: " . $f->faultcode . " / " . $f->faultstring);
       exit;
     }
 
@@ -197,7 +197,7 @@ class RBAC {
 	} catch(SoapFault $f) {
 	  return array("success" => FALSE,
 		       "rbachash" => $rbachash,
-		       "detail" => "SOAP FAULT (AddUser)!: " . $f->faultcode . " / " . $f->faultstring . " / " . $f->detail );
+		       "detail" => "SOAP FAULT (AddUser)!: " . $f->faultcode . " / " . $f->faultstring);
 	  exit;
 	}
       } else {
@@ -206,7 +206,7 @@ class RBAC {
     } catch (SoapFault $f) {
       return array("success" => FALSE,
 		   "rbachash" => $rbachash,
-		   "detail" => "SOAP FAULT (UserExists)!: " . $f->faultcode . " / " . $f->faultstring . " / " . $f->detail );
+		   "detail" => "SOAP FAULT (UserExists)!: " . $f->faultcode . " / " . $f->faultstring);
       exit;
     }
 
@@ -286,7 +286,7 @@ class RBAC {
     } catch (SoapFault $f) {
       return array("success" => FALSE,
 		   "rbachash" => $rbachash,
-		   "detail" => "SOAP FAULT (CreateSession)!: " . $f->faultcode . " / " . $f->faultstring . " / " . $f->detail );
+		   "detail" => "SOAP FAULT (CreateSession)!: " . $f->faultcode . " / " . $f->faultstring);
       exit;
     }
 
@@ -370,7 +370,7 @@ class RBAC {
       return $res;
     } catch (SoapFault $f) {
       return array("success" => FALSE,
-		   "detail" => "SOAP FAULT (setMyUserAttributes)!: " . $f->faultcode . " / " . $f->faultstring . " / " . $f->detail );
+		   "detail" => "SOAP FAULT (setMyUserAttributes)!: " . $f->faultcode . " / " . $f->faultstring);
     }
   }