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
This commit is contained in:
Peter Westwood 2010-02-04 21:54:24 +00:00
parent ec9016aaca
commit 94762869e2
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 ");
}
?>