From f79c6cdf7a6811a0cca79df666d0203b2bde1ce4 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sun, 6 Feb 2005 03:42:53 +0000 Subject: [PATCH] Oops. Inverted logic and typo. git-svn-id: https://develop.svn.wordpress.org/trunk@2228 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 = ''; }