Version Description
Fixes issue introduced in 2.2.1 with an incorrect function name (sorry about that)
Download this release
Release Info
Developer | aaroncampbell |
Plugin | Twitter Widget Pro |
Version | 2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.2.2
- readme.txt +7 -1
- wp-twitter-widget.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=paypal%4
|
|
4 |
Tags: twitter, widget, feed
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 2.2.
|
8 |
|
9 |
A widget that properly handles twitter feeds, including parsing @username, #hashtags, and URLs into links. Requires PHP5.
|
10 |
|
@@ -81,11 +81,17 @@ Aparently the database queries required to display the friends feed was causing
|
|
81 |
|
82 |
== Upgrade Notice ==
|
83 |
|
|
|
|
|
|
|
84 |
= 2.2.1 =
|
85 |
Better SEO by adding the ability to remove the "from" links - Thanks <a href="http://yoast.com/">Joost de Valk</a>
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
89 |
= 2.2.1 =
|
90 |
* Add missing space between "from" and "in reply to"
|
91 |
* Add the ability to remove the "from" links from displaying - Thanks to <a href="http://yoast.com/">Joost de Valk</a> for the request and the patch!
|
4 |
Tags: twitter, widget, feed
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 2.2.2
|
8 |
|
9 |
A widget that properly handles twitter feeds, including parsing @username, #hashtags, and URLs into links. Requires PHP5.
|
10 |
|
81 |
|
82 |
== Upgrade Notice ==
|
83 |
|
84 |
+
= 2.2.2 =
|
85 |
+
Fixes issue introduced in 2.2.1 with an incorrect function name (sorry about that)
|
86 |
+
|
87 |
= 2.2.1 =
|
88 |
Better SEO by adding the ability to remove the "from" links - Thanks <a href="http://yoast.com/">Joost de Valk</a>
|
89 |
|
90 |
== Changelog ==
|
91 |
|
92 |
+
= 2.2.2 =
|
93 |
+
* Fix issue introduced in 2.2.1 with an incorrect function name '_hashtagLink' (sorry about that)
|
94 |
+
|
95 |
= 2.2.1 =
|
96 |
* Add missing space between "from" and "in reply to"
|
97 |
* Add the ability to remove the "from" links from displaying - Thanks to <a href="http://yoast.com/">Joost de Valk</a> for the request and the patch!
|
wp-twitter-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Twitter Widget Pro
|
4 |
* Plugin URI: http://xavisys.com/wordpress-plugins/wordpress-twitter-widget/
|
5 |
* Description: A widget that properly handles twitter feeds, including @username, #hashtag, and link parsing. It can even display profile images for the users. Requires PHP5.
|
6 |
-
* Version: 2.2.
|
7 |
* Author: Aaron D. Campbell
|
8 |
* Author URI: http://xavisys.com/
|
9 |
* License: GPLv2 or later
|
@@ -339,7 +339,7 @@ class wpTwitterWidget extends XavisysPlugin {
|
|
339 |
* @return string - Tweet text with #hashtags linked
|
340 |
*/
|
341 |
public function linkHashtags( $text ) {
|
342 |
-
$text = preg_replace_callback('/(^|\s)(#\w*)/i', array($this, '
|
343 |
return $text;
|
344 |
}
|
345 |
|
3 |
* Plugin Name: Twitter Widget Pro
|
4 |
* Plugin URI: http://xavisys.com/wordpress-plugins/wordpress-twitter-widget/
|
5 |
* Description: A widget that properly handles twitter feeds, including @username, #hashtag, and link parsing. It can even display profile images for the users. Requires PHP5.
|
6 |
+
* Version: 2.2.2
|
7 |
* Author: Aaron D. Campbell
|
8 |
* Author URI: http://xavisys.com/
|
9 |
* License: GPLv2 or later
|
339 |
* @return string - Tweet text with #hashtags linked
|
340 |
*/
|
341 |
public function linkHashtags( $text ) {
|
342 |
+
$text = preg_replace_callback('/(^|\s)(#\w*)/i', array($this, '_linkHashtagsCallback'), $text);
|
343 |
return $text;
|
344 |
}
|
345 |
|