]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/deprecated.php
WordPress 3.8.1
[autoinstalls/wordpress.git] / wp-includes / deprecated.php
index d86709a74b7ffe4e70c018b9873ce6979e4f6c5c..44bd316fc355a7c0338f858d04d6b2f4d3c414a4 100644 (file)
@@ -3378,3 +3378,15 @@ function wp_convert_bytes_to_hr( $bytes ) {
 
        return $size . $unit;
 }
+
+/**
+ * Formerly used internally to tidy up the search terms.
+ *
+ * @access private
+ * @since 2.9.0
+ * @deprecated 3.7.0
+ */
+function _search_terms_tidy( $t ) {
+       _deprecated_function( __FUNCTION__, '3.7' );
+       return trim( $t, "\"'\n\r " );
+}