Version Description
Fix issue with "Include Retweets" not unchecking
Download this release
Release Info
Developer | aaroncampbell |
Plugin | Twitter Widget Pro |
Version | 2.3.11 |
Comparing to | |
See all releases |
Code changes from version 2.3.10 to 2.3.11
- readme.txt +7 -1
- wp-twitter-widget.php +4 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: twitter, widget, feed
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.2
|
7 |
-
Stable tag: 2.3.
|
8 |
|
9 |
A widget that properly handles twitter feeds, including parsing @username, #hashtags, and URLs into links.
|
10 |
|
@@ -130,6 +130,9 @@ Aparently the database queries required to display the friends feed was causing
|
|
130 |
|
131 |
== Upgrade Notice ==
|
132 |
|
|
|
|
|
|
|
133 |
= 2.3.10 =
|
134 |
Update feeds and links to Ran.ge, moves screenshots outside of plugin zip
|
135 |
|
@@ -165,6 +168,9 @@ Fewer "could not connect to Twitter" messages, new links (reply, retweet, favori
|
|
165 |
|
166 |
== Changelog ==
|
167 |
|
|
|
|
|
|
|
168 |
= 2.3.10 =
|
169 |
* Update feeds and links to Ran.ge
|
170 |
* Move assets to assets dir
|
4 |
Tags: twitter, widget, feed
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.4.2
|
7 |
+
Stable tag: 2.3.11
|
8 |
|
9 |
A widget that properly handles twitter feeds, including parsing @username, #hashtags, and URLs into links.
|
10 |
|
130 |
|
131 |
== Upgrade Notice ==
|
132 |
|
133 |
+
= 2.3.11 =
|
134 |
+
Fix issue with "Include Retweets" not unchecking
|
135 |
+
|
136 |
= 2.3.10 =
|
137 |
Update feeds and links to Ran.ge, moves screenshots outside of plugin zip
|
138 |
|
168 |
|
169 |
== Changelog ==
|
170 |
|
171 |
+
= 2.3.11 =
|
172 |
+
* Fix issue with "Include Retweets" not unchecking
|
173 |
+
|
174 |
= 2.3.10 =
|
175 |
* Update feeds and links to Ran.ge
|
176 |
* Move assets to assets dir
|
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://ran.ge/
|
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.
|
@@ -91,6 +91,7 @@ class WP_Widget_Twitter_Pro extends WP_Widget {
|
|
91 |
</select>
|
92 |
</p>
|
93 |
<p>
|
|
|
94 |
<input class="checkbox" type="checkbox" value="true" id="<?php echo $this->get_field_id( 'showretweets' ); ?>" name="<?php echo $this->get_field_name( 'showretweets' ); ?>"<?php checked( $instance['showretweets'], 'true' ); ?> />
|
95 |
<label for="<?php echo $this->get_field_id( 'showretweets' ); ?>"><?php _e( 'Include retweets', $this->_slug ); ?></label>
|
96 |
</p>
|
@@ -392,6 +393,7 @@ class wpTwitterWidget extends XavisysPlugin {
|
|
392 |
<?php _e( "Other Setting:", $this->_slug );?>
|
393 |
</th>
|
394 |
<td>
|
|
|
395 |
<input class="checkbox" type="checkbox" value="true" id="twp_showretweets" name="twp[showretweets]"<?php checked( $this->_settings['twp']['showretweets'], 'true' ); ?> />
|
396 |
<label for="twp_showretweets"><?php _e( 'Include retweets', $this->_slug ); ?></label>
|
397 |
<br />
|
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.11
|
7 |
* Author: Aaron D. Campbell
|
8 |
* Author URI: http://ran.ge/
|
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.11' );
|
34 |
|
35 |
/**
|
36 |
* WP_Widget_Twitter_Pro is the class that handles the main widget.
|
91 |
</select>
|
92 |
</p>
|
93 |
<p>
|
94 |
+
<input type="hidden" value="false" name="<?php echo $this->get_field_name( 'showretweets' ); ?>" />
|
95 |
<input class="checkbox" type="checkbox" value="true" id="<?php echo $this->get_field_id( 'showretweets' ); ?>" name="<?php echo $this->get_field_name( 'showretweets' ); ?>"<?php checked( $instance['showretweets'], 'true' ); ?> />
|
96 |
<label for="<?php echo $this->get_field_id( 'showretweets' ); ?>"><?php _e( 'Include retweets', $this->_slug ); ?></label>
|
97 |
</p>
|
393 |
<?php _e( "Other Setting:", $this->_slug );?>
|
394 |
</th>
|
395 |
<td>
|
396 |
+
<input type="hidden" value="false" name="twp[showretweets]" />
|
397 |
<input class="checkbox" type="checkbox" value="true" id="twp_showretweets" name="twp[showretweets]"<?php checked( $this->_settings['twp']['showretweets'], 'true' ); ?> />
|
398 |
<label for="twp_showretweets"><?php _e( 'Include retweets', $this->_slug ); ?></label>
|
399 |
<br />
|