- Timestamp:
- 02/09/2020 04:52:28 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r47122 r47219 750 750 if ( ( 'reply' === $action || 'quickedit' === $action ) && ! wp_doing_ajax() ) { 751 751 $action .= ' hide-if-no-js'; 752 } elseif ( ( $action === 'untrash' && $the_comment_status === 'trash' ) || ( $action === 'unspam' && $the_comment_status === 'spam') ) {752 } elseif ( ( 'untrash' === $action && 'trash' === $the_comment_status ) || ( 'unspam' === $action && 'spam' === $the_comment_status ) ) { 753 753 if ( '1' == get_comment_meta( $comment->comment_ID, '_wp_trash_meta_status', true ) ) { 754 754 $action .= ' approve';
Note: See TracChangeset
for help on using the changeset viewer.