From 94762869e2e75c3a27e1298b1d2212e9a0d57eab Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Thu, 4 Feb 2010 21:54:24 +0000 Subject: [PATCH] Fix bug in _search_terms_tidy. Fixes #12060 for trunk props miqrogroove. git-svn-id: https://develop.svn.wordpress.org/trunk@12958 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 74b52246a8..1f5d51d464 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3848,6 +3848,6 @@ function get_file_data( $file, $default_headers, $context = '' ) { * @since 2.9.0 */ function _search_terms_tidy($t) { - return trim($t, "\"\'\n\r "); + return trim($t, "\"'\n\r "); } ?>