Changes from trunk/wp-admin/includes/class-wp-comments-list-table.php at r18041 to branches/3.1/wp-admin/includes/class-wp-comments-list-table.php at r17384
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-admin/includes/class-wp-comments-list-table.php
r18041 r17384 22 22 var $pending_count = array(); 23 23 24 function __construct() {24 function WP_Comments_List_Table() { 25 25 global $post_id; 26 26 … … 30 30 add_filter( 'comment_author', 'floated_admin_avatar' ); 31 31 32 parent:: __construct( array(32 parent::WP_List_Table( array( 33 33 'plural' => 'comments', 34 34 'singular' => 'comment', … … 110 110 $_comment_post_ids[] = $_c->comment_post_ID; 111 111 } 112 113 $_comment_post_ids = array_unique( $_comment_post_ids );114 112 115 113 $this->pending_count = get_pending_comments_num( $_comment_post_ids );
Note: See TracChangeset
for help on using the changeset viewer.