Plugin Directory

Changeset 364135


Ignore:
Timestamp:
03/24/2011 10:01:26 AM (15 years ago)
Author:
0xTC
Message:
 
Location:
wp-tweet-button/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-tweet-button/trunk/readme.txt

    r363990 r364135  
    131131== Changelog ==
    132132
    133 = 2.0.6.1 =
     133= 2.0.6.2 =
    134134* Added Goog.le support (requires PHP json)
    135135* Cleaned up some code.
     
    137137* Resolves issue where superfluous requests to shorteners are sent.
    138138* Additional settings for auto-tweeting.
     139* hasbutton bugfix in manual placement
    139140
    140141= 2.0.6 =
  • wp-tweet-button/trunk/wp-tweet-button.php

    r363984 r364135  
    22/*
    33Plugin Name: WP Tweet Button
    4 Version: 2.0.6.1
     4Version: 2.0.6.2
    55Plugin URI: http://0xtc.com/plugins/wp-tweet-button
    66Description: The WordPress implementation of the official Twitter Tweet Button.
     
    11611161    function tweetbutton($post,$bwdata=false) {
    11621162        global $post;
    1163         if ($this->hasbutton[$post->ID] == 1) return false;
     1163//      if ($this->hasbutton[$post->ID.'m'] == 1) return false;
    11641164        $this->postid = $post->ID;
    11651165        if (isset($post->ID)){
     
    11691169        }
    11701170        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;
    11721172            return $this->tw_generate_button($bwdata);
    11731173        } else {
Note: See TracChangeset for help on using the changeset viewer.