Changeset 945945
- Timestamp:
- 07/10/2014 02:24:35 AM (12 years ago)
- Location:
- flickr-rss/trunk
- Files:
-
- 2 edited
-
flickrrss.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flickr-rss/trunk/flickrrss.php
r941995 r945945 14 14 15 15 function flickrRSS() { 16 $this->version = " 6.0";16 $this->version = "5.3.1"; 17 17 } 18 18 … … 182 182 ) { 183 183 $img_to_cache = $thumbnail; 184 preg_match( '<http ://farm[0-9]{0,3}\.static.?flickr\.com/\d+?\/([^.]*)\.jpg>', $img_to_cache, $flickrSlugMatches );184 preg_match( '<https?://farm[0-9]{0,3}\.static.?flickr\.com/\d+?\/([^.]*)\.jpg>', $img_to_cache, $flickrSlugMatches ); 185 185 $flickrSlug = $flickrSlugMatches[1]; 186 186 if ( ! file_exists( "$fullPath$flickrSlug.jpg" ) ) { -
flickr-rss/trunk/readme.txt
r941995 r945945 4 4 Requires at least: 3.5 5 5 Tested up to: 3.9 6 Stable tag: 5.3 6 Stable tag: 5.3.1 7 7 8 8 Allows you to integrate Flickr photos into your site. It supports user, set, favorite, group and community photostreams. … … 81 81 == Plugin History == 82 82 83 **Latest Release:** July 1, 201483 **Latest Release:** July 3, 2014 84 84 85 * 5.3.1 - Updated cache to work with https urls, props ManxStef 85 86 * 5.3 - Fixed feed urls to use https://, some fixes to deprecated functions and errors 86 87 * 5.2 - Fixed image cache server name change, also had a nested function for some reason which was messing up multiple instances for people
Note: See TracChangeset
for help on using the changeset viewer.