diff --git a/wp-includes/class-wp-user.php b/wp-includes/class-wp-user.php index 91dc5a7e93..8a2ed09e27 100644 --- a/wp-includes/class-wp-user.php +++ b/wp-includes/class-wp-user.php @@ -701,12 +701,12 @@ class WP_User { * * @see map_meta_cap() * - * @param string $cap Capability name. - * @param int $object_id Optional. ID of the specific object to check against if `$cap` is a "meta" cap. - * "Meta" capabilities, e.g. 'edit_post', 'edit_user', etc., are capabilities used - * by map_meta_cap() to map to other "primitive" capabilities, e.g. 'edit_posts', - * 'edit_others_posts', etc. The parameter is accessed via func_get_args() and passed - * to map_meta_cap(). + * @param string $cap Capability name. + * @param int $object_id,... Optional. ID of the specific object to check against if `$cap` is a "meta" cap. + * "Meta" capabilities, e.g. 'edit_post', 'edit_user', etc., are capabilities used + * by map_meta_cap() to map to other "primitive" capabilities, e.g. 'edit_posts', + * 'edit_others_posts', etc. The parameter is accessed via func_get_args() and passed + * to map_meta_cap(). * @return bool Whether the current user has the given capability. If `$cap` is a meta cap and `$object_id` is * passed, whether the current user has the given meta capability for the given object. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index a393638d6f..67de27ffba 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-35953'; +$wp_version = '4.5-alpha-35954'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.