Version Description
Display dates based on your WordPress timezone setting
Download this release
Release Info
Developer | aaroncampbell |
Plugin | Twitter Widget Pro |
Version | 2.3.9 |
Comparing to | |
See all releases |
Code changes from version 2.3.8 to 2.3.9
- readme.txt +9 -5
- wp-twitter-widget.php +3 -3
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: aaroncampbell
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9993090
|
4 |
Tags: twitter, widget, feed
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 2.3.
|
8 |
|
9 |
A widget that properly handles twitter feeds, including parsing @username, #hashtags, and URLs into links.
|
10 |
|
@@ -20,9 +20,7 @@ Brought to you by <a href="http://bluedogwebservices.com/" title="WordPress Deve
|
|
20 |
|
21 |
== Installation ==
|
22 |
|
23 |
-
1.
|
24 |
-
1. Upload the whole `twitter-widget-pro` directory to the `/wp-content/plugins/` directory
|
25 |
-
1. Activate the plugin through the 'Plugins' menu in WordPress
|
26 |
1. In WordPress admin go to 'Appearance' -> 'Widgets' and add "Twitter Widget Pro" to one of your widget-ready areas of your site
|
27 |
|
28 |
== Frequently Asked Questions ==
|
@@ -132,6 +130,9 @@ Aparently the database queries required to display the friends feed was causing
|
|
132 |
|
133 |
== Upgrade Notice ==
|
134 |
|
|
|
|
|
|
|
135 |
= 2.3.8 =
|
136 |
Fix issue with mixed content warning on HTTPS pages
|
137 |
|
@@ -161,6 +162,9 @@ Fewer "could not connect to Twitter" messages, new links (reply, retweet, favori
|
|
161 |
|
162 |
== Changelog ==
|
163 |
|
|
|
|
|
|
|
164 |
= 2.3.8 =
|
165 |
* Pass $tweet to widget_twitter_content filter
|
166 |
* Fix issue with mixed content warning on HTTPS pages
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9993090
|
4 |
Tags: twitter, widget, feed
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.4.1
|
7 |
+
Stable tag: 2.3.9
|
8 |
|
9 |
A widget that properly handles twitter feeds, including parsing @username, #hashtags, and URLs into links.
|
10 |
|
20 |
|
21 |
== Installation ==
|
22 |
|
23 |
+
1. Use automatic installer.
|
|
|
|
|
24 |
1. In WordPress admin go to 'Appearance' -> 'Widgets' and add "Twitter Widget Pro" to one of your widget-ready areas of your site
|
25 |
|
26 |
== Frequently Asked Questions ==
|
130 |
|
131 |
== Upgrade Notice ==
|
132 |
|
133 |
+
= 2.3.9 =
|
134 |
+
Display dates based on your WordPress timezone setting
|
135 |
+
|
136 |
= 2.3.8 =
|
137 |
Fix issue with mixed content warning on HTTPS pages
|
138 |
|
162 |
|
163 |
== Changelog ==
|
164 |
|
165 |
+
= 2.3.9 =
|
166 |
+
* Display dates based on your WordPress timezone setting
|
167 |
+
|
168 |
= 2.3.8 =
|
169 |
* Pass $tweet to widget_twitter_content filter
|
170 |
* Fix issue with mixed content warning on HTTPS pages
|
wp-twitter-widget.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Twitter Widget Pro
|
4 |
* Plugin URI: http://bluedogwebservices.com/wordpress-plugin/twitter-widget-pro/
|
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.3.
|
7 |
* Author: Aaron D. Campbell
|
8 |
* Author URI: http://bluedogwebservices.com/
|
9 |
* License: GPLv2 or later
|
@@ -30,7 +30,7 @@
|
|
30 |
|
31 |
require_once( 'tlc-transients.php' );
|
32 |
require_once( 'xavisys-plugin-framework.php' );
|
33 |
-
define( 'TWP_VERSION', '2.3.
|
34 |
|
35 |
/**
|
36 |
* WP_Widget_Twitter_Pro is the class that handles the main widget.
|
@@ -810,7 +810,7 @@ class wpTwitterWidget extends XavisysPlugin {
|
|
810 |
$since = time() - $startTimestamp;
|
811 |
|
812 |
if ( $max != '-1' && $since >= $max )
|
813 |
-
return date_i18n( $dateFormat, $startTimestamp );
|
814 |
|
815 |
|
816 |
foreach ( $chunks as $key => $seconds ) {
|
3 |
* Plugin Name: Twitter Widget Pro
|
4 |
* Plugin URI: http://bluedogwebservices.com/wordpress-plugin/twitter-widget-pro/
|
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.3.9
|
7 |
* Author: Aaron D. Campbell
|
8 |
* Author URI: http://bluedogwebservices.com/
|
9 |
* License: GPLv2 or later
|
30 |
|
31 |
require_once( 'tlc-transients.php' );
|
32 |
require_once( 'xavisys-plugin-framework.php' );
|
33 |
+
define( 'TWP_VERSION', '2.3.9' );
|
34 |
|
35 |
/**
|
36 |
* WP_Widget_Twitter_Pro is the class that handles the main widget.
|
810 |
$since = time() - $startTimestamp;
|
811 |
|
812 |
if ( $max != '-1' && $since >= $max )
|
813 |
+
return date_i18n( $dateFormat, $startTimestamp + get_option('gmt_offset') * 3600 );
|
814 |
|
815 |
|
816 |
foreach ( $chunks as $key => $seconds ) {
|