Plugin Directory

Changeset 906296


Ignore:
Timestamp:
05/01/2014 01:38:39 PM (12 years ago)
Author:
apokalyptik
Message:

hot fix: not processing some images, image variable being overwritten

Location:
photostream-sync
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • photostream-sync/tags/2.1.2/photostream-sync.php

    r886424 r906296  
    55Description: Synchronize your public iCloud photostreams to your WordPress installation. Import images, Import videos, create gallery posts, and more.
    66Author: Demitrious Kelly <apokalyptik@apokalyptik.com>
    7 Version: 2.1
     7Version: 2.1.2
    88Author URI: http://blog.apokalyptik.com/
    99*/
     
    1515class Photostream {
    1616
    17     var $file_version       = '2.1';
     17    var $file_version       = '2.1.1';
    1818    var $streams            = null;
    1919    var $streaminfo         = array();
     
    13801380           
    13811381            // 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 ) )
    13841384                continue;
    13851385
  • photostream-sync/tags/2.1.2/readme.txt

    r889596 r906296  
    55Requires at least: 3.8
    66Tested up to: 3.8
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.2
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • photostream-sync/trunk/photostream-sync.php

    r886424 r906296  
    55Description: Synchronize your public iCloud photostreams to your WordPress installation. Import images, Import videos, create gallery posts, and more.
    66Author: Demitrious Kelly <apokalyptik@apokalyptik.com>
    7 Version: 2.1
     7Version: 2.1.2
    88Author URI: http://blog.apokalyptik.com/
    99*/
     
    1515class Photostream {
    1616
    17     var $file_version       = '2.1';
     17    var $file_version       = '2.1.1';
    1818    var $streams            = null;
    1919    var $streaminfo         = array();
     
    13801380           
    13811381            // 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 ) )
    13841384                continue;
    13851385
  • photostream-sync/trunk/readme.txt

    r889596 r906296  
    55Requires at least: 3.8
    66Tested up to: 3.8
    7 Stable tag: 2.1.1
     7Stable tag: 2.1.2
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.