diff --git a/wp-admin/includes/class-wp-users-list-table.php b/wp-admin/includes/class-wp-users-list-table.php index 3b4eed95e9..1c3cd29acf 100644 --- a/wp-admin/includes/class-wp-users-list-table.php +++ b/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/wp-admin/includes/deprecated.php b/wp-admin/includes/deprecated.php index d1eebac0e8..59140b7304 100644 --- a/wp-admin/includes/deprecated.php +++ b/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.')); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index af78ff9294..b31d9c6d1b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31716'; +$wp_version = '4.2-alpha-31717'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.