From 92e3890daaeaddc7e6ba19210ce6370b923b9b87 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Thu, 13 Nov 2014 12:15:23 +0000 Subject: [PATCH] Correct `@since` tag in `count_user_posts()` docs. Props pavelevap, DrewAPicture. See #21364. Built from https://develop.svn.wordpress.org/trunk@30328 git-svn-id: http://core.svn.wordpress.org/trunk@30327 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 6bd92adefc..ecb6bbba4b 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -250,7 +250,7 @@ function wp_validate_logged_in_cookie( $user_id ) { * Number of posts user has written. * * @since 3.0.0 - * @since 4.0.0 Added $post_type parameter. + * @since 4.1.0 Added $post_type parameter. * * @global wpdb $wpdb WordPress database object for queries. * @@ -269,7 +269,7 @@ function count_user_posts( $userid, $post_type = 'post' ) { * Filter the number of posts a user has written. * * @since 2.7.0 - * @since 4.0.0 Added $post_type parameter. + * @since 4.1.0 Added $post_type parameter. * * @param int $count The user's post count. * @param int $userid User ID. diff --git a/wp-includes/version.php b/wp-includes/version.php index 231f3591e2..ff40a25677 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-alpha-30327'; +$wp_version = '4.1-alpha-30328'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.