Make WordPress Core

Changeset 12535


Ignore:
Timestamp:
12/24/2009 10:53:34 AM (15 years ago)
Author:
westi
Message:

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

Location:
trunk/wp-includes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r12534 r12535  
    29942994 *
    29952995 * @param string $file The file that was included
    2996  * @param string $version The version of WordPress that deprecated the function
     2996 * @param string $version The version of WordPress that deprecated the file
    29972997 * @param string $replacement Optional. The file that should have been included based on ABSPATH
    29982998 */
  • trunk/wp-includes/registration-functions.php

    r12534 r12535  
    55 * @package WordPress
    66 */
    7 _deprecated_file( basename(__FILE__), '0.0', WPINC .  '/registration.php' );
     7_deprecated_file( basename(__FILE__), '2.1', WPINC .  '/registration.php' );
    88require_once(ABSPATH . WPINC .  '/registration.php');
    99?>
  • trunk/wp-includes/rss-functions.php

    r12534 r12535  
    66 */
    77
    8 _deprecated_file( basename(__FILE__), '0.0', WPINC . '/rss.php' );
     8_deprecated_file( basename(__FILE__), '2.1', WPINC . '/rss.php' );
    99require_once (ABSPATH . WPINC . '/rss.php');
    1010?>
Note: See TracChangeset for help on using the changeset viewer.