mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Always use dirname() or, once available, ABSPATH. props ketwaroo, hakre. fixes #17092. git-svn-id: https://develop.svn.wordpress.org/trunk@25616 602fd350-edb4-49c9-b593-d223f7449a82
10 lines
189 B
PHP
10 lines
189 B
PHP
<?php
|
|
/**
|
|
* Deprecated. Use rss.php instead.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
_deprecated_file( basename(__FILE__), '2.1', WPINC . '/rss.php' );
|
|
require_once( ABSPATH . WPINC . '/rss.php' );
|