diff --git a/wp-includes/default-widgets.php b/wp-includes/default-widgets.php index bf14a8fc49..055665ae03 100644 --- a/wp-includes/default-widgets.php +++ b/wp-includes/default-widgets.php @@ -805,8 +805,15 @@ function wp_widget_rss_output( $rss, $args = array() ) { if ( empty($title) ) $title = __('Untitled'); - $desc = str_replace(array("\n", "\r"), ' ', esc_attr(strip_tags(@html_entity_decode($item->get_description(), ENT_QUOTES, get_option('blog_charset'))))); - $desc = wp_html_excerpt( $desc, 360 ) . ' […]'; + $desc = str_replace( array("\n", "\r"), ' ', esc_attr( strip_tags( @html_entity_decode( $item->get_description(), ENT_QUOTES, get_option('blog_charset') ) ) ) ); + $desc = wp_html_excerpt( $desc, 360 ); + + // Append ellipsis. Change existing [...] to […]. + if ( '[...]' == substr( $desc, -5 ) ) + $desc = substr( $desc, 0, -5 ) . '[…]'; + elseif ( '[…]' != substr( $desc, -10 ) ) + $desc .= ' […]'; + $desc = esc_html( $desc ); if ( $show_summary ) {