Changes from trunk/wp-admin/admin-ajax.php at r8296 to branches/2.6/wp-admin/admin-ajax.php at r8491
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6/wp-admin/admin-ajax.php
r8296 r8491 393 393 list($comments, $total) = _wp_get_comment_list( $status, $search, $start, 1 ); 394 394 395 if ( get_option('show_avatars') ) 396 add_filter( 'comment_author', 'floated_admin_avatar' ); 397 395 398 if ( !$comments ) 396 399 die('1'); … … 399 402 get_comment( $comment ); 400 403 ob_start(); 401 _wp_comment_row( $comment->comment_ID, $mode, false);404 _wp_comment_row( $comment->comment_ID, $mode, $status ); 402 405 $comment_list_item = ob_get_contents(); 403 406 ob_end_clean();
Note: See TracChangeset
for help on using the changeset viewer.