Changeset 1969

Show
Ignore:
Timestamp:
12/17/04 08:48:30 (4 years ago)
Author:
saxmatt
Message:

http://mosquito.wordpress.org/view.php?id=556

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/comment-functions.php

    r1967 r1969  
    140140function get_comment_author() { 
    141141    global $comment; 
    142      
    143     if ( empty($author) ) 
     142    if ( empty($comment->comment_author) ) 
    144143        $author = 'Anonymous'; 
    145  
     144    else 
     145        $author = $comment->comment_author; 
    146146    return apply_filters('get_comment_author', $author); 
    147147}