Changeset 906296
- Timestamp:
- 05/01/2014 01:38:39 PM (12 years ago)
- Location:
- photostream-sync
- Files:
-
- 4 edited
- 1 copied
-
tags/2.1.2 (copied) (copied from photostream-sync/tags/2.1.1)
-
tags/2.1.2/photostream-sync.php (modified) (3 diffs)
-
tags/2.1.2/readme.txt (modified) (1 diff)
-
trunk/photostream-sync.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
photostream-sync/tags/2.1.2/photostream-sync.php
r886424 r906296 5 5 Description: Synchronize your public iCloud photostreams to your WordPress installation. Import images, Import videos, create gallery posts, and more. 6 6 Author: Demitrious Kelly <apokalyptik@apokalyptik.com> 7 Version: 2.1 7 Version: 2.1.2 8 8 Author URI: http://blog.apokalyptik.com/ 9 9 */ … … 15 15 class Photostream { 16 16 17 var $file_version = '2.1 ';17 var $file_version = '2.1.1'; 18 18 var $streams = null; 19 19 var $streaminfo = array(); … … 1380 1380 1381 1381 // does the image already exist in our db? 1382 $image = $this->get_processed_image( $image );1383 if( !empty( $image) )1382 $image_posts = $this->get_processed_image( $image ); 1383 if( !empty( $image_posts ) ) 1384 1384 continue; 1385 1385 -
photostream-sync/tags/2.1.2/readme.txt
r889596 r906296 5 5 Requires at least: 3.8 6 6 Tested up to: 3.8 7 Stable tag: 2.1. 17 Stable tag: 2.1.2 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
photostream-sync/trunk/photostream-sync.php
r886424 r906296 5 5 Description: Synchronize your public iCloud photostreams to your WordPress installation. Import images, Import videos, create gallery posts, and more. 6 6 Author: Demitrious Kelly <apokalyptik@apokalyptik.com> 7 Version: 2.1 7 Version: 2.1.2 8 8 Author URI: http://blog.apokalyptik.com/ 9 9 */ … … 15 15 class Photostream { 16 16 17 var $file_version = '2.1 ';17 var $file_version = '2.1.1'; 18 18 var $streams = null; 19 19 var $streaminfo = array(); … … 1380 1380 1381 1381 // does the image already exist in our db? 1382 $image = $this->get_processed_image( $image );1383 if( !empty( $image) )1382 $image_posts = $this->get_processed_image( $image ); 1383 if( !empty( $image_posts ) ) 1384 1384 continue; 1385 1385 -
photostream-sync/trunk/readme.txt
r889596 r906296 5 5 Requires at least: 3.8 6 6 Tested up to: 3.8 7 Stable tag: 2.1. 17 Stable tag: 2.1.2 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.