Twitter Widget Pro - Version 1.4.5

Version Description

  • Switched to using date_i18n so dates are localized
Download this release

Release Info

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

Code changes from version 1.4.4 to 1.4.5

Files changed (2) hide show
  1. readme.txt +4 -1
  2. wp-twitter-widget.php +3 -3
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.7
6
  Tested up to: 2.8.1
7
- Stable tag: 1.4.4
8
 
9
  A widget that properly handles twitter feeds, including parsing @username, #hashtags, and URLs into links. Requires PHP5.
10
 
@@ -46,6 +46,9 @@ Aparently the database queries required to display the friends feed was causing
46
 
47
  == Changelog ==
48
 
 
 
 
49
  = 1.4.4 =
50
  * Added Danish translation - Props <a href="http://wordpress.blogos.dk/">Georg</a>
51
  * Add ability to give more information on WHY you should upgrade on the plugins page
4
  Tags: twitter, widget, feed
5
  Requires at least: 2.7
6
  Tested up to: 2.8.1
7
+ Stable tag: 1.4.5
8
 
9
  A widget that properly handles twitter feeds, including parsing @username, #hashtags, and URLs into links. Requires PHP5.
10
 
46
 
47
  == Changelog ==
48
 
49
+ = 1.4.5 =
50
+ * Switched to using date_i18n so dates are localized
51
+
52
  = 1.4.4 =
53
  * Added Danish translation - Props <a href="http://wordpress.blogos.dk/">Georg</a>
54
  * Add ability to give more information on WHY you should upgrade on the plugins page
wp-twitter-widget.php CHANGED
@@ -3,13 +3,13 @@
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, #hashtag, and link parsing. It can even display profile images for the users. Requires PHP5.
6
- * Version: 1.4.4
7
  * Author: Aaron D. Campbell
8
  * Author URI: http://xavisys.com/
9
  * Text Domain: twitter-widget-pro
10
  */
11
 
12
- define('TWP_VERSION', '1.4.4');
13
 
14
  /* Copyright 2006 Aaron D. Campbell (email : wp_plugins@xavisys.com)
15
 
@@ -589,7 +589,7 @@ profileImage;
589
  $since = time() - $startTimestamp;
590
 
591
  if ($max != '-1' && $since >= $max) {
592
- return date('h:i:s A F d, Y', $startTimestamp);
593
  }
594
 
595
  foreach ( $chunks as $key => $seconds ) {
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, #hashtag, and link parsing. It can even display profile images for the users. Requires PHP5.
6
+ * Version: 1.4.5
7
  * Author: Aaron D. Campbell
8
  * Author URI: http://xavisys.com/
9
  * Text Domain: twitter-widget-pro
10
  */
11
 
12
+ define('TWP_VERSION', '1.4.5');
13
 
14
  /* Copyright 2006 Aaron D. Campbell (email : wp_plugins@xavisys.com)
15
 
589
  $since = time() - $startTimestamp;
590
 
591
  if ($max != '-1' && $since >= $max) {
592
+ return date_i18n('h:i:s A F d, Y', $startTimestamp);
593
  }
594
 
595
  foreach ( $chunks as $key => $seconds ) {