From 3a7137a7a554e0883ddc1b13389899907c5a85d2 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Tue, 12 Jul 2016 13:21:29 +0000 Subject: [PATCH] Meta: Add a missing `@since` param for `wp_object_type_exists()`. See #35658 Built from https://develop.svn.wordpress.org/trunk@38038 git-svn-id: http://core.svn.wordpress.org/trunk@37979 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 ++ wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index ee92179352..84ca8add6c 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -5360,6 +5360,8 @@ function mysql_to_rfc3339( $date_string ) { /** * Check if an object type exists. By default, these are `post`, `comment`, `user`, and `term`. * + * @since 4.6.0 + * * @param string $object_type Object type to check. * @return bool True if the object type exists, false if not. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index df08da6825..ad6742e65c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta2-38037'; +$wp_version = '4.6-beta2-38038'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.