Skip to content

Commit

Permalink
fixed "Passing null to parameter #2 ($numeric_prefix) of type string …
Browse files Browse the repository at this point in the history
…is deprecated"
  • Loading branch information
tobias-trozowski committed Jun 16, 2022
1 parent cb1cbce commit 2dbb8a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Zend/Http/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ public function request($method = null)
if (! empty($query)) {
$query .= '&';
}
$query .= http_build_query($this->paramsGet, null, '&');
$query .= http_build_query($this->paramsGet, '', '&');
if ($this->config['rfc3986_strict']) {
$query = str_replace('+', '%20', $query);
}
Expand Down

0 comments on commit 2dbb8a7

Please sign in to comment.