Don't show two ellipses in wp_widget_rss_output(). Fixes #11244 props miqrogroove
git-svn-id: https://develop.svn.wordpress.org/trunk@13328 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
59701fcaec
commit
11489bbd41
@ -806,7 +806,14 @@ function wp_widget_rss_output( $rss, $args = array() ) {
|
||||
$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 = 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 ) {
|
||||
|
Loading…
Reference in New Issue
Block a user