Make WordPress Core


Ignore:
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.