diff --git a/wp-includes/comment.php b/wp-includes/comment.php index c6dd33d911..3354d2b72d 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -2003,9 +2003,11 @@ function wp_defer_comment_counting($defer=null) { * * @staticvar array $_deferred * - * @param int $post_id Post ID - * @param bool $do_deferred Whether to process previously deferred post comment counts - * @return bool|void True on success, false on failure + * @param int|null $post_id Post ID. + * @param bool $do_deferred Optional. Whether to process previously deferred + * post comment counts. Default false. + * @return bool|void True on success, false on failure or if post with ID does + * not exist. */ function wp_update_comment_count($post_id, $do_deferred=false) { static $_deferred = array(); diff --git a/wp-includes/version.php b/wp-includes/version.php index f1e0953ab0..6770f0526b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36138'; +$wp_version = '4.5-alpha-36139'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.