Remove Yoast SEO Comments - Version 1.0.5

Version Description

  • Fixed an security vulnerability regarding target="_blank" (read more)
  • Added support for WordPress 4.7
Download this release

Release Info

Developer lowest
Plugin Icon wp plugin Remove Yoast SEO Comments
Version 1.0.5
Comparing to
See all releases

Code changes from version 1.0.4 to 1.0.5

Files changed (2) hide show
  1. readme.txt +5 -1
  2. remove-yoast-seo-comments.php +2 -2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: yoast seo, yoast, seo, remove comments, remove html, remove ads, remove debug code, lightweight
5
  Requires at least: 1.2.0
6
  Stable tag: 1.2.0
7
- Tested up to: 4.6
8
 
9
  Removes the Yoast SEO advertisement HTML comments from your front-end source code.
10
 
@@ -44,6 +44,10 @@ No, this plugin will not modify any of your Yoast SEO plugin files.
44
 
45
  == Changelog ==
46
 
 
 
 
 
47
  = 1.0.4 =
48
  * Removed debugging code
49
 
4
  Tags: yoast seo, yoast, seo, remove comments, remove html, remove ads, remove debug code, lightweight
5
  Requires at least: 1.2.0
6
  Stable tag: 1.2.0
7
+ Tested up to: 4.7
8
 
9
  Removes the Yoast SEO advertisement HTML comments from your front-end source code.
10
 
44
 
45
  == Changelog ==
46
 
47
+ = 1.0.5 =
48
+ * Fixed an security vulnerability regarding `target="_blank"` ([read more](https://core.trac.wordpress.org/ticket/36809))
49
+ * Added support for WordPress 4.7
50
+
51
  = 1.0.4 =
52
  * Removed debugging code
53
 
remove-yoast-seo-comments.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Remove Yoast SEO comments
4
  * Plugin URI: https://wordpress.org/plugins/remove-yoast-seo-comments/
5
  * Description: Removes the Yoast SEO advertisement HTML comments from your front-end source code.
6
- * Version: 1.0.4
7
  * Author: Mitch
8
  * Author URI: https://profiles.wordpress.org/lowest
9
  * License: GPL-2.0+
@@ -61,5 +61,5 @@ if ( rysc_active( 'wordpress-seo/wp-seo.php' ) || rysc_active( 'wordpress-seo-pr
61
  }
62
 
63
  add_filter( 'plugin_action_links_' . plugin_basename( RYSC_FILE ), function($link) {
64
- return array_merge( $link, array('<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2VYPRGME8QELC" target="_blank"><strong>Donate</strong></a>') );
65
  } );
3
  * Plugin Name: Remove Yoast SEO comments
4
  * Plugin URI: https://wordpress.org/plugins/remove-yoast-seo-comments/
5
  * Description: Removes the Yoast SEO advertisement HTML comments from your front-end source code.
6
+ * Version: 1.0.5
7
  * Author: Mitch
8
  * Author URI: https://profiles.wordpress.org/lowest
9
  * License: GPL-2.0+
61
  }
62
 
63
  add_filter( 'plugin_action_links_' . plugin_basename( RYSC_FILE ), function($link) {
64
+ return array_merge( $link, array('<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2VYPRGME8QELC" target="_blank" rel="noopener noreferrer">Donate</a>') );
65
  } );