Make WordPress Core

Changeset 7574


Ignore:
Timestamp:
03/30/2008 01:42:03 PM (16 years ago)
Author:
westi
Message:

Make sure the rewrite rules for the feed files match when WordPress is installed in a subdirectory. See #6460 this is for trunk.

Location:
trunk/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/rewrite.php

    r7563 r7574  
    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
  • trunk/wp-includes/version.php

    r7569 r7574  
    1717 * @global int $wp_db_version
    1818 */
    19 $wp_db_version = 7558;
     19$wp_db_version = 7574;
    2020
    2121?>
Note: See TracChangeset for help on using the changeset viewer.