Changeset 364135
- Timestamp:
- 03/24/2011 10:01:26 AM (15 years ago)
- Location:
- wp-tweet-button/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-tweet-button.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-tweet-button/trunk/readme.txt
r363990 r364135 131 131 == Changelog == 132 132 133 = 2.0.6. 1=133 = 2.0.6.2 = 134 134 * Added Goog.le support (requires PHP json) 135 135 * Cleaned up some code. … … 137 137 * Resolves issue where superfluous requests to shorteners are sent. 138 138 * Additional settings for auto-tweeting. 139 * hasbutton bugfix in manual placement 139 140 140 141 = 2.0.6 = -
wp-tweet-button/trunk/wp-tweet-button.php
r363984 r364135 2 2 /* 3 3 Plugin Name: WP Tweet Button 4 Version: 2.0.6. 14 Version: 2.0.6.2 5 5 Plugin URI: http://0xtc.com/plugins/wp-tweet-button 6 6 Description: The WordPress implementation of the official Twitter Tweet Button. … … 1161 1161 function tweetbutton($post,$bwdata=false) { 1162 1162 global $post; 1163 if ($this->hasbutton[$post->ID] == 1) return false;1163 // if ($this->hasbutton[$post->ID.'m'] == 1) return false; 1164 1164 $this->postid = $post->ID; 1165 1165 if (isset($post->ID)){ … … 1169 1169 } 1170 1170 if ($this->tw_get_option('tw_where') == 'manual' || $this->tw_get_option('tw_force_manual') == '1') { 1171 $this->hasbutton[$post->ID] = 1;1171 // $this->hasbutton[$post->ID.'m'] = 1; 1172 1172 return $this->tw_generate_button($bwdata); 1173 1173 } else {
Note: See TracChangeset
for help on using the changeset viewer.