mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-14 19:08:25 +00:00
Fixed deprecation notice: numeric prefix cannot be null in http_build_query.
This commit is contained in:
parent
a908a13f96
commit
7302598222
2 changed files with 2 additions and 2 deletions
|
@ -750,7 +750,7 @@ class CakeRequest implements ArrayAccess {
|
|||
public function here($base = true) {
|
||||
$url = $this->here;
|
||||
if (!empty($this->query)) {
|
||||
$url .= '?' . http_build_query($this->query, null, '&');
|
||||
$url .= '?' . http_build_query($this->query, "", '&');
|
||||
}
|
||||
if (!$base) {
|
||||
$url = preg_replace('/^' . preg_quote($this->base, '/') . '/', '', $url, 1);
|
||||
|
|
|
@ -1073,7 +1073,7 @@ class Router {
|
|||
$out = $q;
|
||||
$q = $extra;
|
||||
}
|
||||
$addition = http_build_query($q, null, $join);
|
||||
$addition = http_build_query($q, "", $join);
|
||||
|
||||
if ($out && $addition && substr($out, strlen($join) * -1, strlen($join)) !== $join) {
|
||||
$out .= $join;
|
||||
|
|
Loading…
Reference in a new issue