Changeset 838772
- Timestamp:
- 01/15/2014 03:36:37 AM (12 years ago)
- File:
-
- 1 edited
-
facebook-albums/trunk/fbalbum.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
facebook-albums/trunk/fbalbum.php
r827855 r838772 48 48 protected static $album_url; //Stores the album URL in the class 49 49 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. 51 51 52 52 //The graph API URl the plugin will access. Script replaces {ALBUM_ID} with self::$album_id … … 132 132 public static function shortcode_callback( $atts ) { 133 133 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) 135 135 extract( shortcode_atts( array( 136 'url' => '', 'limit' => ' 200'136 'url' => '', 'limit' => '1000' 137 137 ), $atts ) ); 138 138 self::_set_album_url( $url );
Note: See TracChangeset
for help on using the changeset viewer.