From deac166256069502f4ba19047c3ae4a4df3ab5a6 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Wed, 12 Mar 2014 02:06:07 +0100 Subject: [PATCH] Fix issue #731 - RSS text strings on options page being double escaped --- admin/pages/rss.php | 6 ++---- readme.txt | 3 +++ 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/admin/pages/rss.php b/admin/pages/rss.php index 651e5410893..99a8e9ed699 100644 --- a/admin/pages/rss.php +++ b/admin/pages/rss.php @@ -16,20 +16,18 @@ $content = '

' . __( "This feature is used to automatically add content to your RSS, more specifically, it's meant to add links back to your blog and your blog posts, so dumb scrapers will automatically add these links too, helping search engines identify you as the original source of the content.", 'wordpress-seo' ) . '

'; $rows = array(); -$rssbefore = esc_textarea( $options[ 'rssbefore' ] ); -$rssafter = esc_textarea( $options[ 'rssafter' ] ); $rows[] = array( 'id' => 'rssbefore', 'label' => __( 'Content to put before each post in the feed', 'wordpress-seo' ), 'desc' => __( '(HTML allowed)', 'wordpress-seo' ), - 'content' => '', + 'content' => '', ); $rows[] = array( 'id' => 'rssafter', 'label' => __( 'Content to put after each post', 'wordpress-seo' ), 'desc' => __( '(HTML allowed)', 'wordpress-seo' ), - 'content' => '', + 'content' => '', ); $rows[] = array( 'label' => __( 'Explanation', 'wordpress-seo' ), diff --git a/readme.txt b/readme.txt index bfeb49c8c08..f11d441073d 100644 --- a/readme.txt +++ b/readme.txt @@ -108,6 +108,9 @@ You'll find the [FAQ on Yoast.com](https://yoast.com/wordpress/plugins/seo/faq/) = Trunk = +* Bugfixes + * Fix RSS text strings on options page being double escaped, [issue #731](https://github.com/Yoast/wordpress-seo/issues/731) as reported by [namaserajesh](https://github.com/namaserajesh) - props [Jrf](http://profiles.wordpress.org/jrf). + * i18n Updates * Updated nl_NL, id_ID, it_IT, fr_FR and de_DE * Added ko