From 51299852efe08782e17b77fc74f0c28bc215a60a Mon Sep 17 00:00:00 2001 From: markjaquith 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: http://svn.automattic.com/wordpress/trunk@6069 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 efbf1b657..89bc6f4c2 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 )