From b6c9d89527e0c62125d6ebab9f26edccd7a02c5b Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 20 Nov 2008 03:06:21 +0000 Subject: [PATCH] Remove trim. fixes #8252 git-svn-id: http://svn.automattic.com/wordpress/trunk@9803 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/post.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 3dc5bb90c..94de9ce62 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -1677,7 +1677,6 @@ function wp_set_post_tags( $post_id = 0, $tags = '', $append = false ) { if ( empty($tags) ) $tags = array(); $tags = (is_array($tags)) ? $tags : explode( ',', trim($tags, " \n\t\r\0\x0B,") ); - $tags = array_map('trim', $tags); //Trim whitespace from around the tags. wp_set_object_terms($post_id, $tags, 'post_tag', $append); }