From 72fb8260443a1ebae81c6291a09068a55e85edd2 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 16 Dec 2015 22:34:55 +0000 Subject: [PATCH] Widgets: Remove extra quotes from widget title in `WP_Widget_RSS`, accidentally added in [33814]. Props ShinichiN. Fixes #34978 for trunk. git-svn-id: https://develop.svn.wordpress.org/trunk@35978 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/widgets/class-wp-widget-rss.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/widgets/class-wp-widget-rss.php b/src/wp-includes/widgets/class-wp-widget-rss.php index 169e129e28..b477a6e42e 100644 --- a/src/wp-includes/widgets/class-wp-widget-rss.php +++ b/src/wp-includes/widgets/class-wp-widget-rss.php @@ -76,7 +76,7 @@ class WP_Widget_RSS extends WP_Widget { $url = strip_tags( $url ); $icon = includes_url( 'images/rss.png' ); if ( $title ) - $title = 'RSS "'. esc_html( $title ) .'"'; + $title = 'RSS '. esc_html( $title ) . ''; echo $args['before_widget']; if ( $title ) {