Plugin Directory

Changeset 850120


Ignore:
Timestamp:
02/02/2014 07:53:23 PM (12 years ago)
Author:
sutherlandboswell
Message:

Fixed bug due to Foursquare now requiring a version parameter

Location:
foursquare-venue
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • foursquare-venue/tags/2.2.2/foursquare-venue.php

    r462411 r850120  
    66Author: Sutherland Boswell
    77Author URI: http://sutherlandboswell.com
    8 Version: 2.2.1
     8Version: 2.2.2
    99License: GPL2
    1010*/
     
    7979        $client_id = get_option('foursquare_venue_client_id');
    8080        $client_secret = get_option('foursquare_venue_client_secret');
    81         $request = "https://api.foursquare.com/v2/venues/$id?client_id=$client_id&client_secret=$client_secret";
     81        $request = "https://api.foursquare.com/v2/venues/$id?client_id=$client_id&client_secret=$client_secret&v=20111113";
    8282        $response = wp_remote_get( $request, array( 'sslverify' => false ) );
    8383        if( is_wp_error( $response ) ) {
  • foursquare-venue/tags/2.2.2/readme.txt

    r462411 r850120  
    11=== Foursquare Venue ===
    22Contributors: sutherlandboswell
    3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=sutherland%2eboswell%40gmail%2ecom&lc=US&item_name=Sutherland%20Boswell&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted
     3Donate link: http://wie.ly/u/donate
    44Tags: foursquare, venue, widget, social networking, location
    55Requires at least: 3.0
    6 Tested up to: 3.2.1
    7 Stable tag: 2.2.1
     6Tested up to: 3.8.1
     7Stable tag: 2.2.2
    88
    99Foursquare Venue is a simple but powerful plugin for displaying any venue's Foursquare stats.
     
    4444== Changelog ==
    4545
     46= 2.2.2 =
     47* Fixed error due to Foursquare's new version parameter requirement
     48
    4649= 2.2.1 =
    4750* Improved error messages
  • foursquare-venue/trunk/foursquare-venue.php

    r462411 r850120  
    66Author: Sutherland Boswell
    77Author URI: http://sutherlandboswell.com
    8 Version: 2.2.1
     8Version: 2.2.2
    99License: GPL2
    1010*/
     
    7979        $client_id = get_option('foursquare_venue_client_id');
    8080        $client_secret = get_option('foursquare_venue_client_secret');
    81         $request = "https://api.foursquare.com/v2/venues/$id?client_id=$client_id&client_secret=$client_secret";
     81        $request = "https://api.foursquare.com/v2/venues/$id?client_id=$client_id&client_secret=$client_secret&v=20111113";
    8282        $response = wp_remote_get( $request, array( 'sslverify' => false ) );
    8383        if( is_wp_error( $response ) ) {
  • foursquare-venue/trunk/readme.txt

    r462411 r850120  
    11=== Foursquare Venue ===
    22Contributors: sutherlandboswell
    3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=sutherland%2eboswell%40gmail%2ecom&lc=US&item_name=Sutherland%20Boswell&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted
     3Donate link: http://wie.ly/u/donate
    44Tags: foursquare, venue, widget, social networking, location
    55Requires at least: 3.0
    6 Tested up to: 3.2.1
    7 Stable tag: 2.2.1
     6Tested up to: 3.8.1
     7Stable tag: 2.2.2
    88
    99Foursquare Venue is a simple but powerful plugin for displaying any venue's Foursquare stats.
     
    4444== Changelog ==
    4545
     46= 2.2.2 =
     47* Fixed error due to Foursquare's new version parameter requirement
     48
    4649= 2.2.1 =
    4750* Improved error messages
Note: See TracChangeset for help on using the changeset viewer.