From 0866e1e58491aa196d1649c8fe513e9e2028c842 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 14 Jan 2008 21:44:08 +0000 Subject: [PATCH] Don't double requested url in url_to_postid(). Props filosofo. fixes #5661 git-svn-id: http://svn.automattic.com/wordpress/trunk@6614 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/rewrite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/rewrite.php b/wp-includes/rewrite.php index f50a428cb..127a7ab22 100644 --- a/wp-includes/rewrite.php +++ b/wp-includes/rewrite.php @@ -127,7 +127,7 @@ function url_to_postid($url) { foreach ($rewrite as $match => $query) { // If the requesting file is the anchor of the match, prepend it // to the path info. - if ( (! empty($url)) && (strpos($match, $url) === 0) ) { + if ( (! empty($url)) && (strpos($match, $url) === 0) && ($url != $request)) { $request_match = $url . '/' . $request; }