Fix sanitize_text_field() issue with some UTF-8 characters, fixes #11528 for 2.9.1

git-svn-id: http://svn.automattic.com/wordpress/branches/2.9@12501 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-12-23 09:16:31 +00:00
parent a1100b85da
commit 2a5bfcc972
1 changed files with 2 additions and 2 deletions

View File

@ -2810,7 +2810,7 @@ function wp_strip_all_tags($string, $remove_breaks = false) {
$string = strip_tags($string);
if ( $remove_breaks )
$string = preg_replace('/\s+/', ' ', $string);
$string = preg_replace('/[\r\n\t ]+/', ' ', $string);
return trim($string);
}
@ -2836,7 +2836,7 @@ function sanitize_text_field($str) {
$filtered = wp_pre_kses_less_than( $filtered );
$filtered = wp_strip_all_tags( $filtered, true );
} else {
$filtered = trim( preg_replace('/\s+/', ' ', $filtered) );
$filtered = trim( preg_replace('/[\r\n\t ]+/', ' ', $filtered) );
}
$match = array();