Make WordPress Core


Ignore:
Timestamp:
10/14/2008 06:22:52 AM (17 years ago)
Author:
markjaquith
Message:

Redirect ancient wp-*.php feed files. fixes #4604

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-commentsrss2.php

    r7991 r9158  
    11<?php
    22/**
    3  * Outputs the RSS2 XML format comment feed using the feed-rss2.php file in
    4  * wp-includes folder. This file only sets the feed format and includes the
    5  * feed-rss2-comments.php.
    6  *
    7  * This file is no longer used in WordPress and while it is not deprecated now.
    8  * This file will most likely be deprecated or removed in a later version.
    9  *
    10  * The link for the rss2 comment feed is /index.php?feed=rss2&withcomments=1
    11  * with permalinks off.
     3 * Redirects to the Comments RSS2 feed
     4 * This file is deprecated and only exists for backwards compatibility
    125 *
    136 * @package WordPress
    147 */
    158
    16 if (empty($wp)) {
    17     require_once('./wp-load.php');
    18     wp('feed=rss2&withcomments=1');
    19 }
    20 
    21 require (ABSPATH . WPINC . '/feed-rss2-comments.php');
     9require( './wp-load.php' );
     10wp_redirect( get_bloginfo( 'comments_rss2_url' ), 301 );
    2211
    2312?>
Note: See TracChangeset for help on using the changeset viewer.