From 12038571e3ddc80e134a665903b503c09754a6fd Mon Sep 17 00:00:00 2001 From: westi 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: http://svn.automattic.com/wordpress/trunk@12958 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 74b52246a..1f5d51d46 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 "); } ?>