From ae126fa1f8442b8f0e8d9817601efa67f509dfa6 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 10 Mar 2009 18:25:04 +0000 Subject: [PATCH] Remove leading newlines. Props filosofo. fixes #9096 git-svn-id: https://develop.svn.wordpress.org/trunk@10758 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 ba19486093..68240512c6 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);