More phpdoc fixes. Depreceated version numbers for _deprecated_file() calls in wp-includes.

git-svn-id: http://svn.automattic.com/wordpress/trunk@12535 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
westi 2009-12-24 10:53:34 +00:00
parent 2c2a0cc10c
commit 16a007687f
3 changed files with 3 additions and 3 deletions

View File

@ -2993,7 +2993,7 @@ function _deprecated_function($function, $version, $replacement=null) {
* @uses apply_filters() Calls 'deprecated_file_trigger_error' and expects boolean value of true to do trigger or false to not trigger error.
*
* @param string $file The file that was included
* @param string $version The version of WordPress that deprecated the function
* @param string $version The version of WordPress that deprecated the file
* @param string $replacement Optional. The file that should have been included based on ABSPATH
*/
function _deprecated_file($file, $version, $replacement=null) {

View File

@ -4,6 +4,6 @@
*
* @package WordPress
*/
_deprecated_file( basename(__FILE__), '0.0', WPINC . '/registration.php' );
_deprecated_file( basename(__FILE__), '2.1', WPINC . '/registration.php' );
require_once(ABSPATH . WPINC . '/registration.php');
?>

View File

@ -5,6 +5,6 @@
* @package WordPress
*/
_deprecated_file( basename(__FILE__), '0.0', WPINC . '/rss.php' );
_deprecated_file( basename(__FILE__), '2.1', WPINC . '/rss.php' );
require_once (ABSPATH . WPINC . '/rss.php');
?>