Version Description
- Security fix added a line to the output that secures the target _blank vulnerability. Thanks to @dmv912 on the wordpress forums for the call-out!
Download this release
Release Info
Developer | ben.meredith@gmail.com |
Plugin | Better Click To Tweet |
Version | 5.4.3 |
Comparing to | |
See all releases |
Code changes from version 5.4.2 to 5.4.3
- better-click-to-tweet.php +3 -3
- readme.txt +5 -1
better-click-to-tweet.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Better Click To Tweet
|
4 |
Description: Add Click to Tweet boxes simply and elegantly to your posts or pages. All the features of a premium plugin, for FREE!
|
5 |
-
Version: 5.4.
|
6 |
Author: Ben Meredith
|
7 |
Author URI: https://www.betterclicktotweet.com
|
8 |
Plugin URI: https://wordpress.org/plugins/better-click-to-tweet/
|
@@ -166,11 +166,11 @@ function bctt_shortcode( $atts ) {
|
|
166 |
|
167 |
if ( $atts['nofollow'] != 'no' ) {
|
168 |
|
169 |
-
$rel =
|
170 |
|
171 |
} else {
|
172 |
|
173 |
-
$rel = '';
|
174 |
|
175 |
}
|
176 |
|
2 |
/*
|
3 |
Plugin Name: Better Click To Tweet
|
4 |
Description: Add Click to Tweet boxes simply and elegantly to your posts or pages. All the features of a premium plugin, for FREE!
|
5 |
+
Version: 5.4.3
|
6 |
Author: Ben Meredith
|
7 |
Author URI: https://www.betterclicktotweet.com
|
8 |
Plugin URI: https://wordpress.org/plugins/better-click-to-tweet/
|
166 |
|
167 |
if ( $atts['nofollow'] != 'no' ) {
|
168 |
|
169 |
+
$rel = 'rel="noopener noreferrer nofollow"';
|
170 |
|
171 |
} else {
|
172 |
|
173 |
+
$rel = 'rel="noopener noreferrer"';
|
174 |
|
175 |
}
|
176 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.wpsteward.com/donations/plugin-support/
|
|
4 |
Tags: click to tweet, twitter, tweet,
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 5.4.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -100,6 +100,10 @@ Donations: http://benlikes.us/donate
|
|
100 |
1. Becomes this in your blog post!
|
101 |
|
102 |
== Changelog ==
|
|
|
|
|
|
|
|
|
103 |
= 5.4.2 =
|
104 |
* Fix — removed a line that was breaking things.
|
105 |
|
4 |
Tags: click to tweet, twitter, tweet,
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 5.4.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
100 |
1. Becomes this in your blog post!
|
101 |
|
102 |
== Changelog ==
|
103 |
+
|
104 |
+
= 5.4.3 =
|
105 |
+
* Security fix — added a line to the output that secures the target _blank vulnerability. Thanks to @dmv912 on the wordpress forums for the call-out!
|
106 |
+
|
107 |
= 5.4.2 =
|
108 |
* Fix — removed a line that was breaking things.
|
109 |
|