From 2128c3f4dbd9638b005919acf27ef9726fbbd8fe Mon Sep 17 00:00:00 2001 From: azaozz Date: Wed, 23 Dec 2009 09:10:26 +0000 Subject: [PATCH] Fix sanitize_text_field() issue with some UTF-8 characters, fixes #11528 for trunk git-svn-id: http://svn.automattic.com/wordpress/trunk@12499 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/formatting.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 6472b14cc..810381605 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -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();