oAuth Twitter Feed for Developers - Version 2.1.4

Version Description

Download this release

Release Info

Developer stormuk
Plugin Icon wp plugin oAuth Twitter Feed for Developers
Version 2.1.4
Comparing to
See all releases

Code changes from version 2.1.3 to 2.1.4

Files changed (2) hide show
  1. readme.txt +2 -2
  2. twitter-feed-for-developers.php +2 -2
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: http://www.stormconsultancy.co.uk/
4
  Tags: twitter, oauth, feed, tweets
5
  Requires at least: 3.4
6
  Tested up to: 3.8
7
- Stable tag: 2.1.3
8
- Version: 2.1.3
9
  License: MIT
10
  License URI: http://opensource.org/licenses/MIT
11
 
4
  Tags: twitter, oauth, feed, tweets
5
  Requires at least: 3.4
6
  Tested up to: 3.8
7
+ Stable tag: 2.1.4
8
+ Version: 2.1.4
9
  License: MIT
10
  License URI: http://opensource.org/licenses/MIT
11
 
twitter-feed-for-developers.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: oAuth Twitter Feed for Developers
4
  Description: Twitter API 1.1 compliant plugin that provides a function to get an array of tweets from the auth'd users Twitter feed for use in themes.
5
- Version: 2.1.3
6
  License: MIT
7
  License URI: http://opensource.org/licenses/MIT
8
  Author: Storm Consultancy (Liam Gladdy)
@@ -26,7 +26,7 @@ function getTweets($username = false, $count = 20, $options = false) {
26
  $config['directory'] = plugin_dir_path(__FILE__);
27
 
28
  $obj = new StormTwitter($config);
29
- $res = $obj->getTweets($count, $username, $options);
30
  update_option('tdf_last_error',$obj->st_last_error);
31
  return $res;
32
 
2
  /*
3
  Plugin Name: oAuth Twitter Feed for Developers
4
  Description: Twitter API 1.1 compliant plugin that provides a function to get an array of tweets from the auth'd users Twitter feed for use in themes.
5
+ Version: 2.1.4
6
  License: MIT
7
  License URI: http://opensource.org/licenses/MIT
8
  Author: Storm Consultancy (Liam Gladdy)
26
  $config['directory'] = plugin_dir_path(__FILE__);
27
 
28
  $obj = new StormTwitter($config);
29
+ $res = $obj->getTweets($username, $count, $options);
30
  update_option('tdf_last_error',$obj->st_last_error);
31
  return $res;
32