Changeset 2816689
- Timestamp:
- 11/11/2022 02:40:46 PM (3 years ago)
- Location:
- ilab-media-tools
- Files:
-
- 6 edited
- 1 copied
-
tags/4.5.11 (copied) (copied from ilab-media-tools/trunk)
-
tags/4.5.11/classes/Tools/Storage/StorageImageEditor.php (modified) (1 diff)
-
tags/4.5.11/ilab-media-tools.php (modified) (2 diffs)
-
tags/4.5.11/readme.txt (modified) (2 diffs)
-
trunk/classes/Tools/Storage/StorageImageEditor.php (modified) (1 diff)
-
trunk/ilab-media-tools.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ilab-media-tools/tags/4.5.11/classes/Tools/Storage/StorageImageEditor.php
r2684586 r2816689 284 284 } else { 285 285 $dir = wp_get_upload_dir(); 286 if (strpos($destfilename, $dir['basedir']) !== 0) {286 if (strpos($destfilename, ABSPATH) !== 0) { 287 287 $destfilename = trailingslashit($dir['basedir']).$destfilename; 288 $destPath = pathinfo($destfilename, PATHINFO_DIRNAME); 289 if (!file_exists($destPath)) { 290 @mkdir($destPath, 0777, true); 291 } 288 292 } 289 293 -
ilab-media-tools/tags/4.5.11/ilab-media-tools.php
r2814610 r2816689 6 6 Description: Automatically upload media to Amazon S3 and integrate with Imgix, a real-time image processing CDN. Boosts site performance and simplifies workflows. 7 7 Author: interfacelab 8 Version: 4.5.1 08 Version: 4.5.11 9 9 Requires PHP: 7.4 10 10 Author URI: http://interfacelab.io … … 96 96 97 97 // Version Defines 98 define( 'MEDIA_CLOUD_VERSION', '4.5.1 0' );98 define( 'MEDIA_CLOUD_VERSION', '4.5.11' ); 99 99 define( 'MEDIA_CLOUD_INFO_VERSION', '4.0.2' ); 100 100 define( 'MCLOUD_IS_BETA', false ); -
ilab-media-tools/tags/4.5.11/readme.txt
r2814610 r2816689 6 6 License: GPLv3 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-3.0.html 8 Stable tag: 4.5.1 08 Stable tag: 4.5.11 9 9 Requires PHP: 7.4 10 10 … … 105 105 106 106 == 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). 107 113 108 114 = 4.5.10 - 11/09/2022 = -
ilab-media-tools/trunk/classes/Tools/Storage/StorageImageEditor.php
r2684586 r2816689 284 284 } else { 285 285 $dir = wp_get_upload_dir(); 286 if (strpos($destfilename, $dir['basedir']) !== 0) {286 if (strpos($destfilename, ABSPATH) !== 0) { 287 287 $destfilename = trailingslashit($dir['basedir']).$destfilename; 288 $destPath = pathinfo($destfilename, PATHINFO_DIRNAME); 289 if (!file_exists($destPath)) { 290 @mkdir($destPath, 0777, true); 291 } 288 292 } 289 293 -
ilab-media-tools/trunk/ilab-media-tools.php
r2814610 r2816689 6 6 Description: Automatically upload media to Amazon S3 and integrate with Imgix, a real-time image processing CDN. Boosts site performance and simplifies workflows. 7 7 Author: interfacelab 8 Version: 4.5.1 08 Version: 4.5.11 9 9 Requires PHP: 7.4 10 10 Author URI: http://interfacelab.io … … 96 96 97 97 // Version Defines 98 define( 'MEDIA_CLOUD_VERSION', '4.5.1 0' );98 define( 'MEDIA_CLOUD_VERSION', '4.5.11' ); 99 99 define( 'MEDIA_CLOUD_INFO_VERSION', '4.0.2' ); 100 100 define( 'MCLOUD_IS_BETA', false ); -
ilab-media-tools/trunk/readme.txt
r2814610 r2816689 6 6 License: GPLv3 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-3.0.html 8 Stable tag: 4.5.1 08 Stable tag: 4.5.11 9 9 Requires PHP: 7.4 10 10 … … 105 105 106 106 == 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). 107 113 108 114 = 4.5.10 - 11/09/2022 =
Note: See TracChangeset
for help on using the changeset viewer.