From f3ce3b261520df3a7958b09a69874180431809aa Mon Sep 17 00:00:00 2001 From: donncha Date: Tue, 30 Sep 2008 09:35:05 +0000 Subject: Merged changes from http://trac.wordpress.org/changeset/8568 to fix #746 git-svn-id: http://svn.automattic.com/wordpress-mu/branches/2.6@1498 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/widgets.php | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/wp-includes/widgets.php b/wp-includes/widgets.php index 73e1f6e..2a71a02 100644 --- a/wp-includes/widgets.php +++ b/wp-includes/widgets.php @@ -1162,12 +1162,8 @@ function wp_widget_rss_output( $rss, $args = array() ) { $author = ' ' . wp_specialchars( strip_tags( $item['author_name'] ) ) . ''; } - if ( $link == '' ) { - echo "
  • $title{$date}{$summary}{$author}
  • "; - } else { - echo "
  • $title{$date}{$summary}{$author}
  • "; - } -} + echo "
  • $title{$date}{$summary}{$author}
  • "; + } echo ''; } else { echo ''; -- cgit