diff --git a/wp-includes/class-wp-network-query.php b/wp-includes/class-wp-network-query.php index cb42cb478a..7f8954ca40 100644 --- a/wp-includes/class-wp-network-query.php +++ b/wp-includes/class-wp-network-query.php @@ -101,8 +101,8 @@ class WP_Network_Query { * @type array $network__not_in Array of network IDs to exclude. Default empty. * @type bool $count Whether to return a network count (true) or array of network objects. * Default false. - * @type string $fields Network fields to return. Accepts 'ids' for network IDs only or empty - * for all fields. Default empty. + * @type string $fields Network fields to return. Accepts 'ids' (returns an array of network IDs) + * or empty (returns an array of complete network objects). Default empty. * @type int $number Maximum number of networks to retrieve. Default null (no limit). * @type int $offset Number of networks to offset the query. Used to build LIMIT clause. * Default 0. diff --git a/wp-includes/version.php b/wp-includes/version.php index bfe850bb74..7955e48a3e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta3-38103'; +$wp_version = '4.6-beta3-38104'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.