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
This commit is contained in:
westi 2010-02-04 21:54:24 +00:00
parent 530f9273a7
commit 12038571e3
1 changed files with 1 additions and 1 deletions

View File

@ -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 ");
}
?>