Changeset 2185350
- Timestamp:
- 11/04/2019 04:03:38 AM (6 years ago)
- Location:
- simple-google-photos-grid
- Files:
-
- 6 edited
- 1 copied
-
tags/1.5 (copied) (copied from simple-google-photos-grid/trunk)
-
tags/1.5/readme.txt (modified) (1 diff)
-
tags/1.5/simple-google-photos-grid-shortcode.php (modified) (1 diff)
-
tags/1.5/simple-google-photos-grid.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/simple-google-photos-grid-shortcode.php (modified) (1 diff)
-
trunk/simple-google-photos-grid.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-google-photos-grid/tags/1.5/readme.txt
r2185349 r2185350 54 54 == Changelog == 55 55 56 = 1.5 = 57 * Fixed notices in shortcode 58 56 59 = 1.4 = 57 60 * Fixed uninstall and shortcode bugs -
simple-google-photos-grid/tags/1.5/simple-google-photos-grid-shortcode.php
r2185349 r2185350 16 16 } 17 17 18 $cache_interval = $attributes['cache-interval']18 $cache_interval = isset($attributes['cache-interval']) 19 19 ? intval($attributes['cache-interval']) 20 20 : Simple_Google_Photos_Grid::CACHE_INTERVAL; 21 21 22 $num_photos = $attributes['number-photos']22 $num_photos = isset($attributes['number-photos']) 23 23 ? intval($attributes['number-photos']) 24 24 : Simple_Google_Photos_Grid::NUMBER_PHOTOS; 25 25 26 $num_photos_per_row = $attributes['number-photos-per-row']26 $num_photos_per_row = isset($attributes['number-photos-per-row']) 27 27 ? intval($attributes['number-photos-per-row']) 28 28 : Simple_Google_Photos_Grid::NUMBER_PHOTOS_PER_ROW; -
simple-google-photos-grid/tags/1.5/simple-google-photos-grid.php
r1775225 r2185350 4 4 * Plugin URI: https://github.com/datvance/simple-google-photos-grid 5 5 * Description: Show the latest photos from a public Google Photos album. 6 * Version: 1. 36 * Version: 1.5 7 7 * Author: Josheli 8 8 * Author URI: https://josheli.com -
simple-google-photos-grid/trunk/readme.txt
r2185349 r2185350 54 54 == Changelog == 55 55 56 = 1.5 = 57 * Fixed notices in shortcode 58 56 59 = 1.4 = 57 60 * Fixed uninstall and shortcode bugs -
simple-google-photos-grid/trunk/simple-google-photos-grid-shortcode.php
r2185349 r2185350 16 16 } 17 17 18 $cache_interval = $attributes['cache-interval']18 $cache_interval = isset($attributes['cache-interval']) 19 19 ? intval($attributes['cache-interval']) 20 20 : Simple_Google_Photos_Grid::CACHE_INTERVAL; 21 21 22 $num_photos = $attributes['number-photos']22 $num_photos = isset($attributes['number-photos']) 23 23 ? intval($attributes['number-photos']) 24 24 : Simple_Google_Photos_Grid::NUMBER_PHOTOS; 25 25 26 $num_photos_per_row = $attributes['number-photos-per-row']26 $num_photos_per_row = isset($attributes['number-photos-per-row']) 27 27 ? intval($attributes['number-photos-per-row']) 28 28 : Simple_Google_Photos_Grid::NUMBER_PHOTOS_PER_ROW; -
simple-google-photos-grid/trunk/simple-google-photos-grid.php
r1775225 r2185350 4 4 * Plugin URI: https://github.com/datvance/simple-google-photos-grid 5 5 * Description: Show the latest photos from a public Google Photos album. 6 * Version: 1. 36 * Version: 1.5 7 7 * Author: Josheli 8 8 * Author URI: https://josheli.com
Note: See TracChangeset
for help on using the changeset viewer.