diff --git a/src/wp-admin/includes/user.php b/src/wp-admin/includes/user.php
index 9638e5de64..21fb2a43ce 100644
--- a/src/wp-admin/includes/user.php
+++ b/src/wp-admin/includes/user.php
@@ -1058,11 +1058,11 @@ abstract class WP_Privacy_Requests_Table extends WP_List_Table {
$counts = wp_count_posts( $this->post_type );
$current_link_attributes = empty( $current_status ) ? ' class="current" aria-current="page"' : '';
- $views['all'] = '" . esc_html__( 'All' ) . ' (' . absint( array_sum( (array) $counts ) ) . ')';
+ $views['all'] = '" . esc_html__( 'All' ) . ' (' . absint( array_sum( (array) $counts ) ) . ')';
foreach ( $statuses as $status => $label ) {
$current_link_attributes = $status === $current_status ? ' class="current" aria-current="page"' : '';
- $views[ $status ] = '" . esc_html( $label ) . ' (' . absint( $counts->$status ) . ')';
+ $views[ $status ] = '" . esc_html( $label ) . ' (' . absint( $counts->$status ) . ')';
}
return $views;