Show
Ignore:
Timestamp:
06/13/08 17:21:00 (6 months ago)
Author:
donncha
Message:

WP Merge with revision 8075

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-commentsrss2.php

    r1069 r1328  
    11<?php 
     2/** 
     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. 
     12 * 
     13 * @package WordPress 
     14 */ 
    215 
    316if (empty($wp)) { 
    4         require_once('./wp-config.php'); 
     17        require_once('./wp-load.php'); 
    518        wp('feed=rss2&withcomments=1'); 
    619}