Twitter Widget Pro - Version 1.1.3

Version Description

Download this release

Release Info

Developer aaroncampbell
Plugin Icon wp plugin Twitter Widget Pro
Version 1.1.3
Comparing to
See all releases

Code changes from version 1.1.2 to 1.1.3

Files changed (2) hide show
  1. readme.txt +1 -1
  2. wp-twitter-widget.php +5 -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.5
6
  Tested up to: 2.5.1
7
- Stable tag: 1.1.2
8
 
9
  A widget that properly handles twitter feeds (single user or including friends), including parsing @username and URLs into links. Requires PHP5.
10
 
4
  Tags: twitter, widget, feed
5
  Requires at least: 2.5
6
  Tested up to: 2.5.1
7
+ Stable tag: 1.1.3
8
 
9
  A widget that properly handles twitter feeds (single user or including friends), including parsing @username and URLs into links. Requires PHP5.
10
 
wp-twitter-widget.php CHANGED
@@ -3,13 +3,16 @@
3
  * Plugin Name: Twitter Widget Pro
4
  * Plugin URI: http://xavisys.com/wordpress-twitter-widget/
5
  * Description: A widget that properly handles twitter feeds, including @username and link parsing, feeds that include friends or just one user, and can even display profile images for the users. Requires PHP5.
6
- * Version: 1.1.2
7
  * Author: Aaron D. Campbell
8
  * Author URI: http://xavisys.com/
9
  */
10
 
11
  /**
12
  * Changelog:
 
 
 
13
  * 04/29/2008: 1.1.2
14
  * - Title link always links to correct username, rather than the last person to tweet on that feed
15
  * - Added option to hide RSS icon/link
@@ -300,7 +303,7 @@ class wpTwitterWidget
300
  <a href="http://twitter.com/<?php echo $tweet->user->screen_name; ?>/statuses/<?php echo $tweet->id; ?>">
301
  <?php echo $tweet->ago; ?>
302
  </a> from <?php
303
- echo $tweet->source;
304
  if (isset($tweet->in_reply_to)) {
305
  echo $this->_getReplyTo($tweet->in_reply_to);
306
  } ?>
3
  * Plugin Name: Twitter Widget Pro
4
  * Plugin URI: http://xavisys.com/wordpress-twitter-widget/
5
  * Description: A widget that properly handles twitter feeds, including @username and link parsing, feeds that include friends or just one user, and can even display profile images for the users. Requires PHP5.
6
+ * Version: 1.1.3
7
  * Author: Aaron D. Campbell
8
  * Author URI: http://xavisys.com/
9
  */
10
 
11
  /**
12
  * Changelog:
13
+ * 05/08/2008: 1.1.3
14
+ * - Fixed validation problems if source is a link containg an &
15
+ *
16
  * 04/29/2008: 1.1.2
17
  * - Title link always links to correct username, rather than the last person to tweet on that feed
18
  * - Added option to hide RSS icon/link
303
  <a href="http://twitter.com/<?php echo $tweet->user->screen_name; ?>/statuses/<?php echo $tweet->id; ?>">
304
  <?php echo $tweet->ago; ?>
305
  </a> from <?php
306
+ echo str_replace('&', '&amp;', $tweet->source);
307
  if (isset($tweet->in_reply_to)) {
308
  echo $this->_getReplyTo($tweet->in_reply_to);
309
  } ?>