Skip to content

Commit

Permalink
Fixed big in call to SimpleXML - needed backslash
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Feb 20, 2015
1 parent 106f1e6 commit e4b9a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BigBlueButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ private function _processXmlResponse($url, $xml = ''){
curl_close( $ch );

if($data)
return (new SimpleXMLElement($data));
return (new \SimpleXMLElement($data));
else
return false;
}
Expand Down

0 comments on commit e4b9a52

Please sign in to comment.