Plugin Directory

Changeset 2685249


Ignore:
Timestamp:
02/26/2022 07:00:17 AM (4 years ago)
Author:
interfacelab
Message:
  • Fixed an issue that would prevent certain tasks from running
Location:
ilab-media-tools/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ilab-media-tools/trunk/classes/Utilities/Search/Searcher.php

    r2684586 r2685249  
    121121        $foundTables = $wpdb->get_results("SHOW TABLES FROM {$wpdb->dbname}", ARRAY_A);
    122122        foreach($foundTables as $foundTable) {
    123             $table = array_first($foundTable);
     123            if (empty($foundTable)) {
     124                continue;
     125            }
     126
     127            $table = array_values($foundTable)[0];
    124128            if (strpos($table, $wpdb->prefix) !== 0) {
    125129                continue;
  • ilab-media-tools/trunk/ilab-media-tools.php

    r2685235 r2685249  
    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.3.2
     8Version: 4.3.3
    99Requires PHP: 7.4
    1010Author URI: http://interfacelab.io
     
    9696
    9797// Version Defines
    98 define( 'MEDIA_CLOUD_VERSION', '4.3.2' );
     98define( 'MEDIA_CLOUD_VERSION', '4.3.3' );
    9999define( 'MEDIA_CLOUD_INFO_VERSION', '4.0.2' );
    100100define( 'MCLOUD_IS_BETA', false );
  • ilab-media-tools/trunk/readme.txt

    r2685235 r2685249  
    66License: GPLv3 or later
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
    8 Stable tag: 4.3.2
     8Stable tag: 4.3.3
    99Requires PHP: 7.4
    1010
     
    106106== Changelog ==
    107107
    108 = 4.3.2 - 2/26/2022 =
     108= 4.3.3 - 2/26/2022 =
    109109
    110110* **NOW REQUIRES PHP 7.4**  Installing on PHP < 7.4 will not work and result in errors.
Note: See TracChangeset for help on using the changeset viewer.