From 1360dd85c5e58bfadf02285fd51f3f5f0eb2e5e1 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 1 Apr 2005 05:42:46 +0000 Subject: [PATCH] add_query_arg() dropped the passed in query string if the string did not contain any path elements. git-svn-id: http://svn.automattic.com/wordpress/trunk@2506 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index d1083787c..4ef9227c9 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1908,7 +1908,11 @@ function add_query_arg() { else if (strstr($uri, '/')) { $base = $uri . '?'; $query = ''; + } else { + $base = ''; + $query = $uri; } + parse_str($query, $qs); if (is_array(func_get_arg(0))) { $kayvees = func_get_arg(0);