Make WordPress Core


Ignore:
Timestamp:
11/26/2009 11:29:54 AM (17 years ago)
Author:
azaozz
Message:

Fix notices and phpdoc, props hakre, fixes #10758

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/author-template.php

    r12012 r12284  
    2323function get_the_author($deprecated = '') {
    2424        global $authordata;
    25         return apply_filters('the_author', $authordata->display_name);
     25        return apply_filters('the_author', is_object($authordata) ? $authordata->display_name : null);
    2626}
    2727
Note: See TracChangeset for help on using the changeset viewer.