Make WordPress Core


Ignore:
Timestamp:
03/31/2008 07:56:29 PM (18 years ago)
Author:
westi
Message:

Make sure the rewrite rules for the feed files match when WordPress is installed in a subdirectory. Fixes #6460 for 2.5.1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.5/wp-includes/rewrite.php

    r7563 r7583  
    794794
    795795                //Default Feed rules - These are require to allow for the direct access files to work with permalink structure starting with %category%
    796                 $default_feeds = array( 'wp-atom.php$'  =>      $this->index .'?feed=atom',
    797                                                                 'wp-rdf.php$'   =>      $this->index .'?feed=rdf',
    798                                                                 'wp-rss.php$'   =>      $this->index .'?feed=rss',
    799                                                                 'wp-rss2.php$'  =>      $this->index .'?feed=rss2',
    800                                                                 'wp-feed.php$'  =>      $this->index .'?feed=feed',
    801                                                                 'wp-commentsrss2.php$'  =>      $this->index . '?feed=rss2&withcomments=1');
     796                $default_feeds = array( '.*/wp-atom.php$'       =>      $this->index .'?feed=atom',
     797                                                                '.*/wp-rdf.php$'        =>      $this->index .'?feed=rdf',
     798                                                                '.*/wp-rss.php$'        =>      $this->index .'?feed=rss',
     799                                                                '.*/wp-rss2.php$'       =>      $this->index .'?feed=rss2',
     800                                                                '.*/wp-feed.php$'       =>      $this->index .'?feed=feed',
     801                                                                '.*/wp-commentsrss2.php$'       =>      $this->index . '?feed=rss2&withcomments=1');
    802802
    803803                // Post
Note: See TracChangeset for help on using the changeset viewer.