Make WordPress Core


Ignore:
Timestamp:
05/24/2009 11:47:49 PM (16 years ago)
Author:
ryan
Message:

Trim tailing whitespace

File:
1 edited

Legend:

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

    r11383 r11450  
    16731673 * @return int The author's ID.
    16741674 */
    1675 function get_the_author_ID() { 
     1675function get_the_author_ID() {
    16761676    _deprecated_function(__FUNCTION__, '2.8', 'get_the_author_meta(\'ID\')' );
    16771677    return get_the_author_meta('ID');
     
    16861686 * @uses get_the_author_ID()
    16871687*/
    1688 function the_author_ID() { 
     1688function the_author_ID() {
    16891689    _deprecated_function(__FUNCTION__, '2.8', 'the_author_meta(\'ID\')' );
    16901690    the_author_meta('ID');
    1691 } 
     1691}
    16921692
    16931693?>
Note: See TracChangeset for help on using the changeset viewer.