Plugin Directory

Changeset 838772


Ignore:
Timestamp:
01/15/2014 03:36:37 AM (12 years ago)
Author:
mglaman
Message:

Was alerted max photo album is now 1,000 bumped up default limit from 200.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • facebook-albums/trunk/fbalbum.php

    r827855 r838772  
    4848  protected static $album_url;  //Stores the album URL in the class
    4949  protected static $album_id;   //Stores the album ID in the class
    50   protected static $album_limit;  //Stores max number of photos, defaults to 200.
     50  protected static $album_limit;  //Stores max number of photos, defaults to 1000.
    5151
    5252  //The graph API URl the plugin will access. Script replaces {ALBUM_ID} with self::$album_id
     
    132132  public static function shortcode_callback( $atts ) {
    133133
    134     //Defaults to null URL. If no limit set, default to 200 (max album size, besides Timeline)
     134    //Defaults to null URL. If no limit set, default to 1000 (max album size, besides Timeline)
    135135    extract( shortcode_atts( array(
    136       'url' => '', 'limit' => '200'
     136      'url' => '', 'limit' => '1000'
    137137    ), $atts ) );
    138138    self::_set_album_url( $url );
Note: See TracChangeset for help on using the changeset viewer.