From 313e9a406b376902f194eea3eb1b3462e4ed612c Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 23 Nov 2005 22:38:25 +0000 Subject: [PATCH] Strip home path from path info. This prevents a path info value of '/wp/index.php' from being considered as a permalink request. fixes #1938 git-svn-id: http://svn.automattic.com/wordpress/trunk@3206 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/classes.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/classes.php b/wp-includes/classes.php index ae75aab41..5efa33cfe 100644 --- a/wp-includes/classes.php +++ b/wp-includes/classes.php @@ -1443,13 +1443,14 @@ class WP { $req_uri = str_replace($pathinfo, '', $req_uri); $req_uri = str_replace($home_path, '', $req_uri); $req_uri = trim($req_uri, '/'); + $pathinfo = str_replace($home_path, '', $pathinfo); $pathinfo = trim($pathinfo, '/'); $self = str_replace($home_path, '', $self); $self = trim($self, '/'); // The requested permalink is in $pathinfo for path info requests and // $req_uri for other requests. - if (! empty($pathinfo) && ($wp_rewrite->index != $pathinfo)) { + if ( ! empty($pathinfo) && ($wp_rewrite->index != $pathinfo) ) { $request = $pathinfo; } else { $request = $req_uri;