From b8d47f48c5cd4f3a1c35257d2fab2c887058bba2 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 14 Jul 2014 00:06:15 +0000 Subject: [PATCH] Inline documentation cleanup for 4.0 audit. * Alignment for the 'term_search_min_chars' hook docs, added in [28892] * Globals added for `wp_ajax_parse_embed()`, added [28580] See #28885. Built from https://develop.svn.wordpress.org/trunk@29151 git-svn-id: http://core.svn.wordpress.org/trunk@28935 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ajax-actions.php | 9 ++++++--- wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index 418389be96..025c24e5ec 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/wp-admin/includes/ajax-actions.php @@ -130,9 +130,9 @@ function wp_ajax_ajax_tag_search() { * * @since 4.0.0 * - * @param int $characters The minimum number of characters required. Default 2. - * @param object $tax The taxonomy object. - * @param string $s The search term. + * @param int $characters The minimum number of characters required. Default 2. + * @param object $tax The taxonomy object. + * @param string $s The search term. */ $term_search_min_chars = (int) apply_filters( 'term_search_min_chars', 2, $tax, $s ); @@ -2608,6 +2608,9 @@ function wp_ajax_query_themes() { * Apply [embed] handlers to a string. * * @since 4.0.0 + * + * @global WP_Post $post Global $post. + * @global WP_Embed $wp_embed Embed API instance. */ function wp_ajax_parse_embed() { global $post, $wp_embed; diff --git a/wp-includes/version.php b/wp-includes/version.php index 0433794dda..84b84f5e4e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.0-beta1-20140713'; +$wp_version = '4.0-beta1-20140714'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.