PHP keywords and constants "true", "false", "null" should be in lower case - there was one lingering capitalized false
in _http_build_query()
.
See #30799. git-svn-id: https://develop.svn.wordpress.org/trunk@31086 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
14c2161a3b
commit
8108c0babe
@ -703,7 +703,7 @@ function _http_build_query( $data, $prefix = null, $sep = null, $key = '', $urle
|
||||
$k = $key . '%5B' . $k . '%5D';
|
||||
if ( $v === null )
|
||||
continue;
|
||||
elseif ( $v === FALSE )
|
||||
elseif ( $v === false )
|
||||
$v = '0';
|
||||
|
||||
if ( is_array($v) || is_object($v) )
|
||||
|
Loading…
Reference in New Issue
Block a user