From f88ae978d1f70ef2274e113b8c66312cfc02ed14 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Mon, 10 Sep 2007 15:34:13 +0000 Subject: [PATCH] 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 --- wp-includes/compat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/compat.php b/wp-includes/compat.php index efbf1b657b..89bc6f4c20 100644 --- a/wp-includes/compat.php +++ b/wp-includes/compat.php @@ -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 )