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
This commit is contained in:
Drew Jaynes 2014-07-14 00:06:15 +00:00
parent d68725af80
commit b8d47f48c5
2 changed files with 7 additions and 4 deletions

View File

@ -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;

View File

@ -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.