- Timestamp:
- 05/10/2024 06:07:17 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r57644 r58129 238 238 $num_comments = ( $post_id ) ? wp_count_comments( $post_id ) : wp_count_comments(); 239 239 240 $stat i= array(240 $statuses = array( 241 241 /* translators: %s: Number of comments. */ 242 242 'all' => _nx_noop( … … 283 283 284 284 if ( ! EMPTY_TRASH_DAYS ) { 285 unset( $stat i['trash'] );285 unset( $statuses['trash'] ); 286 286 } 287 287 … … 292 292 } 293 293 294 foreach ( $stat ias $status => $label ) {294 foreach ( $statuses as $status => $label ) { 295 295 if ( 'mine' === $status ) { 296 296 $current_user_id = get_current_user_id();
Note: See TracChangeset
for help on using the changeset viewer.