diff --git a/src/wp-admin/includes/class-wp-users-list-table.php b/src/wp-admin/includes/class-wp-users-list-table.php index 3b4eed95e9..1c3cd29acf 100644 --- a/src/wp-admin/includes/class-wp-users-list-table.php +++ b/src/wp-admin/includes/class-wp-users-list-table.php @@ -120,7 +120,7 @@ class WP_Users_List_Table extends WP_List_Table { * @access public */ public function no_items() { - _e( 'No matching users were found.' ); + _e( 'No users found.' ); } /** diff --git a/src/wp-admin/includes/deprecated.php b/src/wp-admin/includes/deprecated.php index d1eebac0e8..59140b7304 100644 --- a/src/wp-admin/includes/deprecated.php +++ b/src/wp-admin/includes/deprecated.php @@ -548,7 +548,7 @@ class WP_User_Search { if ( $this->results ) $this->total_users_for_query = $wpdb->get_var("SELECT COUNT(DISTINCT($wpdb->users.ID))" . $this->query_from . $this->query_where); // no limit else - $this->search_errors = new WP_Error('no_matching_users_found', __('No matching users were found!')); + $this->search_errors = new WP_Error('no_matching_users_found', __('No users found.')); } /**