From b09aa14358c12d38aac6992e017da9eb1c879ba2 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 28 Feb 2016 18:35:26 +0000 Subject: [PATCH] Docs: Add missing parameter and return documentation to the DocBlock for the deprecated `_search_terms_tidy()`. See #32246. Built from https://develop.svn.wordpress.org/trunk@36759 git-svn-id: http://core.svn.wordpress.org/trunk@36726 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/deprecated.php | 3 +++ wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-includes/deprecated.php b/wp-includes/deprecated.php index 6ec014c73c..de2b5c6abe 100644 --- a/wp-includes/deprecated.php +++ b/wp-includes/deprecated.php @@ -3346,6 +3346,9 @@ function wp_convert_bytes_to_hr( $bytes ) { * @since 2.9.0 * @access private * @deprecated 3.7.0 + * + * @param string $t Search terms to "tidy", e.g. trim. + * @return string Trimmed search terms. */ function _search_terms_tidy( $t ) { _deprecated_function( __FUNCTION__, '3.7' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 77c792fe69..314f9879aa 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta1-36758'; +$wp_version = '4.5-beta1-36759'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.