Changeset 1328 for trunk/wp-rss.php

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-rss.php

    r1069 r1328  
    11<?php 
     2/** 
     3 * Outputs the RSS feed RDF format using the feed-rss.php 
     4 * file in wp-includes folder. 
     5 * 
     6 * This file only sets the feed format and includes the 
     7 * feed-rss.php. 
     8 * 
     9 * This file is no longer used in WordPress and while it is 
     10 * not deprecated now. This file will most likely be 
     11 * deprecated or removed in a later version. 
     12 * 
     13 * @package WordPress 
     14 */ 
    215 
    316if (empty($wp)) { 
    4         require_once('./wp-config.php'); 
     17        require_once('./wp-load.php'); 
    518        wp('feed=rss'); 
    619}