Forgot to use $lsb and $rsb in [6064]. Props mdawaffe. see #4935. see #4878

git-svn-id: https://develop.svn.wordpress.org/trunk@6069 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2007-09-10 15:34:13 +00:00
parent 4292b0af36
commit f88ae978d1
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ function _http_build_query($data, $prefix=null, $sep=null, $key='', $urlencode=t
if ( is_int($k) && $prefix != null )
$k = $prefix.$k;
if ( !empty($key) )
$k = $key . '%5B' . $k . '%5D';
$k = $key . $lsb . $k . $rsb;
if ( $v === NULL )
continue;
elseif ( $v === FALSE )