Browse Source

Undo silent error

Julio 7 years ago
parent
commit
dbfd35b21d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugin/bbb/lib/bbb_api.php

+ 1 - 1
plugin/bbb/lib/bbb_api.php

@@ -74,7 +74,7 @@ class BigBlueButtonBN {
 			curl_close( $ch );
 
 			if($data)
-				return (@new SimpleXMLElement($data));
+				return (new SimpleXMLElement($data));
 			else
 				return false;
 		}