Don't try to match rewrite rules against AtomPub requests. Props josephscott. fixes #7249

git-svn-id: https://develop.svn.wordpress.org/trunk@8263 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-07-06 17:33:39 +00:00
parent 7040784e97
commit 57532d83dd
1 changed files with 4 additions and 0 deletions

View File

@ -91,6 +91,10 @@ class WP {
// Look for matches.
$request_match = $request;
foreach ($rewrite as $match => $query) {
// Don't try to match against AtomPub calls
if ( $req_uri == 'wp-app.php' )
break;
// If the requesting file is the anchor of the match, prepend it
// to the path info.
if ((! empty($req_uri)) && (strpos($match, $req_uri) === 0) && ($req_uri != $request)) {