From c1e2c5a074302bfb896ed86808ba5b9109293b14 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 10 Mar 2009 18:25:04 +0000 Subject: [PATCH] Remove leading newlines. Props filosofo. fixes #9096 git-svn-id: http://svn.automattic.com/wordpress/trunk@10758 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/feed.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/feed.php b/wp-includes/feed.php index ba1948609..68240512c 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -336,11 +336,11 @@ function get_the_category_rss($type = 'rss') { foreach ( $cat_names as $cat_name ) { if ( 'rdf' == $type ) - $the_list .= "\n\t\t\n"; + $the_list .= "\t\t\n"; elseif ( 'atom' == $type ) $the_list .= sprintf( '', attribute_escape( apply_filters( 'get_bloginfo_rss', get_bloginfo( 'url' ) ) ), attribute_escape( $cat_name ) ); else - $the_list .= "\n\t\t\n"; + $the_list .= "\t\t\n"; } return apply_filters('the_category_rss', $the_list, $type);