Plugin Directory

Changeset 3134502


Ignore:
Timestamp:
08/12/2024 09:18:08 PM (20 months ago)
Author:
bangelov
Message:

Adding v7.86 to trunk

Location:
all-in-one-wp-migration/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • all-in-one-wp-migration/trunk/all-in-one-wp-migration.php

    r3134241 r3134502  
    66 * Author: ServMask
    77 * Author URI: https://servmask.com/
    8  * Version: 7.85
     8 * Version: 7.86
    99 * Text Domain: all-in-one-wp-migration
    1010 * Domain Path: /languages
  • all-in-one-wp-migration/trunk/constants.php

    r3134241 r3134502  
    3636// = Plugin Version =
    3737// ==================
    38 define( 'AI1WM_VERSION', '7.85' );
     38define( 'AI1WM_VERSION', '7.86' );
    3939
    4040// ===============
  • all-in-one-wp-migration/trunk/lib/vendor/servmask/database/class-ai1wm-database-utility.php

    r3134241 r3134502  
    3333
    3434    public static function set_client( $db_client ) {
    35         static::$db_client = $db_client;
     35        self::$db_client = $db_client;
    3636    }
    3737
     
    4444        global $wpdb;
    4545
    46         if ( static::$db_client ) {
    47             return static::$db_client;
     46        if ( self::$db_client ) {
     47            return self::$db_client;
    4848        }
    4949
    5050        if ( $wpdb instanceof WP_SQLite_DB ) {
    51             return static::$db_client = new Ai1wm_Database_Sqlite( $wpdb );
     51            return new Ai1wm_Database_Sqlite( $wpdb );
    5252        }
    5353
    5454        if ( PHP_MAJOR_VERSION >= 7 ) {
    55             return static::$db_client = new Ai1wm_Database_Mysqli( $wpdb );
     55            return new Ai1wm_Database_Mysqli( $wpdb );
    5656        }
    5757
    5858        if ( empty( $wpdb->use_mysqli ) ) {
    59             return static::$db_client = new Ai1wm_Database_Mysql( $wpdb );
     59            return new Ai1wm_Database_Mysql( $wpdb );
    6060        }
    6161
    62         return static::$db_client = new Ai1wm_Database_Mysqli( $wpdb );
     62        return new Ai1wm_Database_Mysqli( $wpdb );
    6363    }
    6464
  • all-in-one-wp-migration/trunk/readme.txt

    r3134241 r3134502  
    55Tested up to: 6.6
    66Requires PHP: 5.3
    7 Stable tag: 7.85
     7Stable tag: 7.86
    88License: GPLv2 or later
    99
     
    2525One 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.
    2626
    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.
     27If 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.
    2828
    2929**Features Spotlight:**
     
    9898
    9999== Changelog ==
     100= 7.86 =
     101**Fixed**
     102
     103* Resolved an issue with PHP 8.4 compatibility and restoring backup files via WP-CLI
     104
    100105= 7.85 =
    101106**Added**
Note: See TracChangeset for help on using the changeset viewer.