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:
parent
ec9016aaca
commit
94762869e2
|
@ -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