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:
parent
530f9273a7
commit
12038571e3
|
@ -3848,6 +3848,6 @@ function get_file_data( $file, $default_headers, $context = '' ) {
|
||||||
* @since 2.9.0
|
* @since 2.9.0
|
||||||
*/
|
*/
|
||||||
function _search_terms_tidy($t) {
|
function _search_terms_tidy($t) {
|
||||||
return trim($t, "\"\'\n\r ");
|
return trim($t, "\"'\n\r ");
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue