diff --git a/src/wp-admin/includes/class-wp-comments-list-table.php b/src/wp-admin/includes/class-wp-comments-list-table.php
old mode 100644
new mode 100755
index e7707daba9..5debb51225
|
a
|
b
|
class WP_Comments_List_Table extends WP_List_Table { |
| 357 | 357 | protected function get_bulk_actions() { |
| 358 | 358 | global $comment_status; |
| 359 | 359 | |
| 360 | | $actions = array(); |
| | 360 | if ( ! current_user_can( 'moderate_comments' ) ) { |
| | 361 | return array(); // Return an empty array if the user doesn't have permission |
| | 362 | } |
| | 363 | |
| | 364 | $actions = array(); |
| 361 | 365 | |
| 362 | 366 | if ( in_array( $comment_status, array( 'all', 'approved' ), true ) ) { |
| 363 | 367 | $actions['unapprove'] = __( 'Unapprove' ); |