Skip to content

Commit

Permalink
Fixes URL builder
Browse files Browse the repository at this point in the history
  • Loading branch information
fender committed Dec 6, 2014
1 parent 59b0813 commit b072362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bracketcloud.lib.php
Expand Up @@ -90,7 +90,7 @@ public function request($path = '', $method = 'GET', $params = array()) {
break;

case 'GET':
$url .= '?' . http_build_query($params, '', '&');
$url .= http_build_query($params, '', '&');
}

$headers = array('Content-type: application/json');
Expand Down

0 comments on commit b072362

Please sign in to comment.