mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Don't double requested url in url_to_postid(). Props filosofo. fixes #5661
git-svn-id: https://develop.svn.wordpress.org/trunk@6614 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user