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:
Scott Taylor 2015-01-08 06:13:05 +00:00
parent 14c2161a3b
commit 8108c0babe

View File

@ -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) )