Make sure the direct feed files work when siteurl == homeurl. Fixes #6460 for trunk props DD32.

git-svn-id: http://svn.automattic.com/wordpress/trunk@7841 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2008-04-28 06:17:01 +00:00
parent 2a8733a159
commit 5a375132ac
1 changed files with 6 additions and 6 deletions

View File

@ -793,12 +793,12 @@ class WP_Rewrite {
$robots_rewrite = array('robots.txt$' => $this->index . '?robots=1');
//Default Feed rules - These are require to allow for the direct access files to work with permalink structure starting with %category%
$default_feeds = array( '.*/wp-atom.php$' => $this->index .'?feed=atom',
'.*/wp-rdf.php$' => $this->index .'?feed=rdf',
'.*/wp-rss.php$' => $this->index .'?feed=rss',
'.*/wp-rss2.php$' => $this->index .'?feed=rss2',
'.*/wp-feed.php$' => $this->index .'?feed=feed',
'.*/wp-commentsrss2.php$' => $this->index . '?feed=rss2&withcomments=1');
$default_feeds = array( '.*wp-atom.php$' => $this->index .'?feed=atom',
'.*wp-rdf.php$' => $this->index .'?feed=rdf',
'.*wp-rss.php$' => $this->index .'?feed=rss',
'.*wp-rss2.php$' => $this->index .'?feed=rss2',
'.*wp-feed.php$' => $this->index .'?feed=feed',
'.*wp-commentsrss2.php$' => $this->index . '?feed=rss2&withcomments=1');
// Post
$post_rewrite = $this->generate_rewrite_rules($this->permalink_structure, EP_PERMALINK);