Changeset 2685249
- Timestamp:
- 02/26/2022 07:00:17 AM (4 years ago)
- Location:
- ilab-media-tools/trunk
- Files:
-
- 3 edited
-
classes/Utilities/Search/Searcher.php (modified) (1 diff)
-
ilab-media-tools.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ilab-media-tools/trunk/classes/Utilities/Search/Searcher.php
r2684586 r2685249 121 121 $foundTables = $wpdb->get_results("SHOW TABLES FROM {$wpdb->dbname}", ARRAY_A); 122 122 foreach($foundTables as $foundTable) { 123 $table = array_first($foundTable); 123 if (empty($foundTable)) { 124 continue; 125 } 126 127 $table = array_values($foundTable)[0]; 124 128 if (strpos($table, $wpdb->prefix) !== 0) { 125 129 continue; -
ilab-media-tools/trunk/ilab-media-tools.php
r2685235 r2685249 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.3. 28 Version: 4.3.3 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.3. 2' );98 define( 'MEDIA_CLOUD_VERSION', '4.3.3' ); 99 99 define( 'MEDIA_CLOUD_INFO_VERSION', '4.0.2' ); 100 100 define( 'MCLOUD_IS_BETA', false ); -
ilab-media-tools/trunk/readme.txt
r2685235 r2685249 6 6 License: GPLv3 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-3.0.html 8 Stable tag: 4.3. 28 Stable tag: 4.3.3 9 9 Requires PHP: 7.4 10 10 … … 106 106 == Changelog == 107 107 108 = 4.3. 2- 2/26/2022 =108 = 4.3.3 - 2/26/2022 = 109 109 110 110 * **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.