Plugin Directory

Changeset 811689


Ignore:
Timestamp:
11/28/2013 05:48:15 AM (12 years ago)
Author:
mglaman
Message:

Pushing minor release to fix caching problems

Location:
facebook-albums
Files:
2 edited
5 copied

Legend:

Unmodified
Added
Removed
  • facebook-albums/tags/2.0.5.1/fbalbum.php

    r811685 r811689  
    44Plugin URI: http://glamanate.com/wordpress/facebook-album/?utm_source=fbalbum_pluginspage&utm_medium=website&utm_campaign=fbalbum
    55Description: Facebook Albums allows you to display Facebook Albums on your WordPress site. Brought to you by <a href="http://dooleyandassociates.com/?utm_source=fbalbum&utm_medium=referral&utm_campaign=Facebook%2BAlbum">Dooley & Associates</a>
    6 Version: 2.0.5
     6Version: 2.0.5.1
    77Author: Matt Glaman
    88Author URI: http://glamanate.com
     
    290290      $facebook_graph_url = str_replace(array('{ALBUM_ID}', '{LIMIT}'), array(self::_get_album_id(), $limit), self::$graph_url);
    291291      $album = self::decap_do_curl($facebook_graph_url);
    292       //We're good to go, let's cache the JSON
    293       self::set_api_cache($album);
     292      if($album) {
     293        //We're good to go, let's cache the JSON
     294        self::set_api_cache($album);
     295      }
     296
    294297      return $album;
    295298    }
  • facebook-albums/tags/2.0.5.1/readme.txt

    r802215 r811689  
    55Requires at least: 3.4
    66Tested up to: 3.5.1
    7 Stable tag: 2.0.5
     7Stable tag: 2.0.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050
    5151== Changelog ==
     52
     53= 2.0.5.1. =
     54* Minor release to fix some caching issues.
    5255
    5356= 2.0.5 =
  • facebook-albums/trunk/fbalbum.php

    r811685 r811689  
    44Plugin URI: http://glamanate.com/wordpress/facebook-album/?utm_source=fbalbum_pluginspage&utm_medium=website&utm_campaign=fbalbum
    55Description: Facebook Albums allows you to display Facebook Albums on your WordPress site. Brought to you by <a href="http://dooleyandassociates.com/?utm_source=fbalbum&utm_medium=referral&utm_campaign=Facebook%2BAlbum">Dooley & Associates</a>
    6 Version: 2.0.5
     6Version: 2.0.5.1
    77Author: Matt Glaman
    88Author URI: http://glamanate.com
     
    290290      $facebook_graph_url = str_replace(array('{ALBUM_ID}', '{LIMIT}'), array(self::_get_album_id(), $limit), self::$graph_url);
    291291      $album = self::decap_do_curl($facebook_graph_url);
    292       //We're good to go, let's cache the JSON
    293       self::set_api_cache($album);
     292      if($album) {
     293        //We're good to go, let's cache the JSON
     294        self::set_api_cache($album);
     295      }
     296
    294297      return $album;
    295298    }
  • facebook-albums/trunk/readme.txt

    r802215 r811689  
    55Requires at least: 3.4
    66Tested up to: 3.5.1
    7 Stable tag: 2.0.5
     7Stable tag: 2.0.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5050
    5151== Changelog ==
     52
     53= 2.0.5.1. =
     54* Minor release to fix some caching issues.
    5255
    5356= 2.0.5 =
Note: See TracChangeset for help on using the changeset viewer.