Plugin Directory

Changeset 133881


Ignore:
Timestamp:
07/10/2009 03:10:08 PM (17 years ago)
Author:
paulmac
Message:

Fixed bug that resulted in followers not being displayed

Location:
twitter-friends-widget/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • twitter-friends-widget/trunk/readme.txt

    r123472 r133881  
    6969== Changelog ==
    7070
    71 = Version 3.02 =
     71= 3.10 =
     72* Fixed bug that prevented Followeres from being shown
     73
     74= 3.02 =
    7275* Added WordPress Mu compatibility. (Fixed issue with WPMU users not being able to save settings).
    7376* Minor update to CSS used to display images.
    7477* Added Settings link to Plugins page. (Appears beside Deactivate and Edit links)
    7578
    76 = Version 3.01 =
     79= 3.01 =
    7780* Updated CSS for better compatibility with IE.
    7881
    79 = Version 3.0 =
     82= 3.0 =
    8083* Complete rewrite of plugin.
    8184* Images displayed using DIV's instead of TABLE.
     
    9295
    9396
    94 = Version 2.7 =
     97= 2.7 =
    9598* Added shortcode.
    9699* Added rel="nofollow" to Twitter Profile/ RSS links.
     
    98101* Bug Fix: Updated code for genarating output table to remove an XHTML validation error.
    99102
    100 = Version 2.6 =
     103= 2.6 =
    101104* Added option to specify whether Friends or Followers are displayed.
    102105* Updated code to use curl instead of pmc_http_class to connect to Twitter.
     
    106109* Bug Fix: Twitter ID not updated correctly.
    107110
    108 = Version 2.5.1 =
     111= 2.5.1 =
    109112* Incorporated patch from David Jack Wange Olrik to rename class_http.php and generic http() class to avoid naming conflicts.
    110113
    111 = Version 2.5 =
     114= 2.5 =
    112115* Added "Twitter Friends Widget - Advanced Settings" plugin.
    113116* Added Delete Friends option.
     
    118121* Fixed minor issue with profile images being incorrectly displayed in sidebar.
    119122
    120 = Version 2.4 =
     123= 2.4 =
    121124* Added option to change table style.
    122125
    123 = Version 2.3 =
     126= 2.3 =
    124127* Added option to enable/ disable "Subscribe to My Twitter Feed" link.
    125128* Added option to add link to Widget Title
    126129
    127 = Version 2.2 =
     130= 2.2 =
    128131* Fixed a bug where ther limit specified in the widget settings was not being applied.
    129132
    130 = Version 2.1 =
     133= 2.1 =
    131134* Removed wp-cron based caching as this was unreliable.
    132135* Added my own simple scheduler for updating the cache.
    133136
    134 = Version 2.0 =
     137= 2.0 =
    135138* Complete re-write of the plugin
    136139* Added caching via a new table added to the WordPress database
     
    139142* Added RSS icon to subscribe link
    140143
    141 = Version 1.21 =
     144= 1.21 =
    142145* Fixed bug with background and text colour styles not being applied correctly
    143146
    144 = Version 1.2 =
     147= 1.2 =
    145148* Due to a large number of issues with the caching function, caching has been removed. See FAQ for more details.
    146149* Added link to users Twitter RSS
    147150* Added option to change background and text colours.
    148151
    149 = Version 1.13 =
     152= 1.13 =
    150153* Added blank http_friends.xml to cache so that cache folder will be included with plugin .zip.
    151154* Updated installation instructions to reflect that cache must be writable.
    152155* Updated readme with error message regarding unwritable cache folder.
    153156
    154 = Version 1.12 =
     157= 1.12 =
    155158Fixed issue with profile images not being displayed correctly.
    156159
    157 = Version 1.11 =
     160= 1.11 =
    158161Fixed bug with local caching
    159162
    160 = Version 1.1 =
     163= 1.1 =
    161164* Changed from using "normal" size images to "mini" size profile images
    162165* Added styles to header
  • twitter-friends-widget/trunk/twitter-friends-widget.php

    r123472 r133881  
    44Plugin URI: http://www.paulmc.org/whatithink/wordpress/plugins/twitter-friends-widget/
    55Description: Widget to display your Twitter Friends in the sidebar.
    6 Version: 3.02
     6Version: 3.1
    77Author: Paul McCarthy
    88Author URI: http://www.paulmc.org/whatithink
     
    263263            update_option('pmc_TF_user', $pmcUser);
    264264            //update the password
    265             update_option('pmc_TF_password', $pmcUser);
     265            update_option('pmc_TF_password', $pmcPass);
    266266            //delete current friends from the database
    267267            $pmcSQL = "DELETE FROM $pmcTable WHERE `id` LIKE '%'";
     
    529529        //set the url to retrieve friends from Twitter dependent on the type to retrieve
    530530            $pmcURL = 'http://twitter.com/statuses/followers.xml?page=' . $i;
     531           
    531532       
    532533        //set the curl url
Note: See TracChangeset for help on using the changeset viewer.