Skip to content

Commit

Permalink
Undo change of post method
Browse files Browse the repository at this point in the history
  • Loading branch information
sanduhrs committed Aug 5, 2020
1 parent 5dbec54 commit a67778b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BigBlueButton/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -375,9 +375,9 @@ public function postRaw($call, $options = [], $content_type = 'application/xml')
* @return string
* The json formatted server response string.
*/
public function post($call, $options = [], $body = '')
public function post($call, $options = [])
{
$raw = $this->postRaw($call, $options, $body);
$raw = $this->postRaw($call, $options);
$xml = simplexml_load_string($raw);

list($element) = $xml->xpath('/*/returncode');
Expand Down

0 comments on commit a67778b

Please sign in to comment.