From d5bbb6214c56a75a99b2836746467a7c4dd302e1 Mon Sep 17 00:00:00 2001 From: rboren Date: Sun, 6 Feb 2005 03:42:53 +0000 Subject: [PATCH] Oops. Inverted logic and typo. git-svn-id: http://svn.automattic.com/wordpress/trunk@2228 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index d3988c5e73..b900ca3667 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1669,7 +1669,7 @@ function add_query_arg() { $query = $parts[1]; } } - else if (! ststr($uri, '/')) { + else if (strstr($uri, '/')) { $base = $uri . '?'; $query = ''; }