Changeset 3134502
- Timestamp:
- 08/12/2024 09:18:08 PM (20 months ago)
- Location:
- all-in-one-wp-migration/trunk
- Files:
-
- 4 edited
-
all-in-one-wp-migration.php (modified) (1 diff)
-
constants.php (modified) (1 diff)
-
lib/vendor/servmask/database/class-ai1wm-database-utility.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
all-in-one-wp-migration/trunk/all-in-one-wp-migration.php
r3134241 r3134502 6 6 * Author: ServMask 7 7 * Author URI: https://servmask.com/ 8 * Version: 7.8 58 * Version: 7.86 9 9 * Text Domain: all-in-one-wp-migration 10 10 * Domain Path: /languages -
all-in-one-wp-migration/trunk/constants.php
r3134241 r3134502 36 36 // = Plugin Version = 37 37 // ================== 38 define( 'AI1WM_VERSION', '7.8 5' );38 define( 'AI1WM_VERSION', '7.86' ); 39 39 40 40 // =============== -
all-in-one-wp-migration/trunk/lib/vendor/servmask/database/class-ai1wm-database-utility.php
r3134241 r3134502 33 33 34 34 public static function set_client( $db_client ) { 35 s tatic::$db_client = $db_client;35 self::$db_client = $db_client; 36 36 } 37 37 … … 44 44 global $wpdb; 45 45 46 if ( s tatic::$db_client ) {47 return s tatic::$db_client;46 if ( self::$db_client ) { 47 return self::$db_client; 48 48 } 49 49 50 50 if ( $wpdb instanceof WP_SQLite_DB ) { 51 return static::$db_client =new Ai1wm_Database_Sqlite( $wpdb );51 return new Ai1wm_Database_Sqlite( $wpdb ); 52 52 } 53 53 54 54 if ( PHP_MAJOR_VERSION >= 7 ) { 55 return static::$db_client =new Ai1wm_Database_Mysqli( $wpdb );55 return new Ai1wm_Database_Mysqli( $wpdb ); 56 56 } 57 57 58 58 if ( empty( $wpdb->use_mysqli ) ) { 59 return static::$db_client =new Ai1wm_Database_Mysql( $wpdb );59 return new Ai1wm_Database_Mysql( $wpdb ); 60 60 } 61 61 62 return static::$db_client =new Ai1wm_Database_Mysqli( $wpdb );62 return new Ai1wm_Database_Mysqli( $wpdb ); 63 63 } 64 64 -
all-in-one-wp-migration/trunk/readme.txt
r3134241 r3134502 5 5 Tested up to: 6.6 6 6 Requires PHP: 5.3 7 Stable tag: 7.8 57 Stable tag: 7.86 8 8 License: GPLv2 or later 9 9 … … 25 25 One feature that makes All-in-One WP Migration widely loved (to the tune of over 6,000 5-star user reviews) is that the technical requirements for installing the plugin are simple. 26 26 27 If you have WordPress version between 3.3 and 6. 5.5 and PHP version between 5.3 and 8.3, you are good to go. All-in-One WP Migration also supports all versions of MySQL, MariaDB and SQLite.27 If you have WordPress version between 3.3 and 6.6.1 and PHP version between 5.3 and 8.4, you are good to go. All-in-One WP Migration also supports all versions of MySQL, MariaDB and SQLite. 28 28 29 29 **Features Spotlight:** … … 98 98 99 99 == Changelog == 100 = 7.86 = 101 **Fixed** 102 103 * Resolved an issue with PHP 8.4 compatibility and restoring backup files via WP-CLI 104 100 105 = 7.85 = 101 106 **Added**
Note: See TracChangeset
for help on using the changeset viewer.