Plugin Directory

Changeset 2816689


Ignore:
Timestamp:
11/11/2022 02:40:46 PM (3 years ago)
Author:
interfacelab
Message:

Update to version 4.5.11 from GitHub

Location:
ilab-media-tools
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ilab-media-tools/tags/4.5.11/classes/Tools/Storage/StorageImageEditor.php

    r2684586 r2816689  
    284284        } else {
    285285            $dir = wp_get_upload_dir();
    286             if (strpos($destfilename, $dir['basedir']) !== 0) {
     286            if (strpos($destfilename, ABSPATH) !== 0) {
    287287                $destfilename = trailingslashit($dir['basedir']).$destfilename;
     288                $destPath = pathinfo($destfilename, PATHINFO_DIRNAME);
     289                if (!file_exists($destPath)) {
     290                    @mkdir($destPath, 0777, true);
     291                }
    288292            }
    289293
  • ilab-media-tools/tags/4.5.11/ilab-media-tools.php

    r2814610 r2816689  
    66Description: Automatically upload media to Amazon S3 and integrate with Imgix, a real-time image processing CDN.  Boosts site performance and simplifies workflows.
    77Author: interfacelab
    8 Version: 4.5.10
     8Version: 4.5.11
    99Requires PHP: 7.4
    1010Author URI: http://interfacelab.io
     
    9696
    9797// Version Defines
    98 define( 'MEDIA_CLOUD_VERSION', '4.5.10' );
     98define( 'MEDIA_CLOUD_VERSION', '4.5.11' );
    9999define( 'MEDIA_CLOUD_INFO_VERSION', '4.0.2' );
    100100define( 'MCLOUD_IS_BETA', false );
  • ilab-media-tools/tags/4.5.11/readme.txt

    r2814610 r2816689  
    66License: GPLv3 or later
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
    8 Stable tag: 4.5.10
     8Stable tag: 4.5.11
    99Requires PHP: 7.4
    1010
     
    105105
    106106== Changelog ==
     107
     108= 4.5.11 - 11/09/2022 =
     109
     110* Fix for StorageImageEditor class that should improve compatibility with other plugins using the image editor but
     111  storing the results in non-standard places.  Should fix problems with a variety of form and social plugins (Gravity,
     112  Peepso, others).
    107113
    108114= 4.5.10 - 11/09/2022 =
  • ilab-media-tools/trunk/classes/Tools/Storage/StorageImageEditor.php

    r2684586 r2816689  
    284284        } else {
    285285            $dir = wp_get_upload_dir();
    286             if (strpos($destfilename, $dir['basedir']) !== 0) {
     286            if (strpos($destfilename, ABSPATH) !== 0) {
    287287                $destfilename = trailingslashit($dir['basedir']).$destfilename;
     288                $destPath = pathinfo($destfilename, PATHINFO_DIRNAME);
     289                if (!file_exists($destPath)) {
     290                    @mkdir($destPath, 0777, true);
     291                }
    288292            }
    289293
  • ilab-media-tools/trunk/ilab-media-tools.php

    r2814610 r2816689  
    66Description: Automatically upload media to Amazon S3 and integrate with Imgix, a real-time image processing CDN.  Boosts site performance and simplifies workflows.
    77Author: interfacelab
    8 Version: 4.5.10
     8Version: 4.5.11
    99Requires PHP: 7.4
    1010Author URI: http://interfacelab.io
     
    9696
    9797// Version Defines
    98 define( 'MEDIA_CLOUD_VERSION', '4.5.10' );
     98define( 'MEDIA_CLOUD_VERSION', '4.5.11' );
    9999define( 'MEDIA_CLOUD_INFO_VERSION', '4.0.2' );
    100100define( 'MCLOUD_IS_BETA', false );
  • ilab-media-tools/trunk/readme.txt

    r2814610 r2816689  
    66License: GPLv3 or later
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
    8 Stable tag: 4.5.10
     8Stable tag: 4.5.11
    99Requires PHP: 7.4
    1010
     
    105105
    106106== Changelog ==
     107
     108= 4.5.11 - 11/09/2022 =
     109
     110* Fix for StorageImageEditor class that should improve compatibility with other plugins using the image editor but
     111  storing the results in non-standard places.  Should fix problems with a variety of form and social plugins (Gravity,
     112  Peepso, others).
    107113
    108114= 4.5.10 - 11/09/2022 =
Note: See TracChangeset for help on using the changeset viewer.