Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
### Fixed

- Fix CurlCommandFormatter for binary request payloads
- Fix QueryParam authentication to assemble proper URL regardless of PHP `arg_separator.output` directive


## 1.6.0 - 2017-07-05
Expand Down
2 changes: 1 addition & 1 deletion src/Authentication/QueryParam.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function authenticate(RequestInterface $request)

$params = array_merge($params, $this->params);

$query = http_build_query($params);
$query = http_build_query($params, null, '&');

$uri = $uri->withQuery($query);

Expand Down