From 019c3e49505f529bd5d3d876033c93b27fdd2df0 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 20 Feb 2007 01:27:37 +0000 Subject: [PATCH] decode req uri when processing pathinfo permalinks. Props Kirin_Lin. fixes #3727 git-svn-id: https://develop.svn.wordpress.org/trunk@4893 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/classes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/classes.php b/wp-includes/classes.php index 931eb4305b..223780fcd5 100644 --- a/wp-includes/classes.php +++ b/wp-includes/classes.php @@ -58,7 +58,7 @@ class WP { // front. For path info requests, this leaves us with the requesting // filename, if any. For 404 requests, this leaves us with the // requested permalink. - $req_uri = str_replace($pathinfo, '', $req_uri); + $req_uri = str_replace($pathinfo, '', urldecode($req_uri)); $req_uri = trim($req_uri, '/'); $req_uri = preg_replace("|^$home_path|", '', $req_uri); $req_uri = trim($req_uri, '/');