Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.6/wp-admin/admin-ajax.php

    r8296 r8491  
    393393    list($comments, $total) = _wp_get_comment_list( $status, $search, $start, 1 );
    394394
     395    if ( get_option('show_avatars') )
     396        add_filter( 'comment_author', 'floated_admin_avatar' );
     397
    395398    if ( !$comments )
    396399        die('1');
     
    399402        get_comment( $comment );
    400403        ob_start();
    401             _wp_comment_row( $comment->comment_ID, $mode, false );
     404            _wp_comment_row( $comment->comment_ID, $mode, $status );
    402405            $comment_list_item = ob_get_contents();
    403406        ob_end_clean();
Note: See TracChangeset for help on using the changeset viewer.