Plugin Directory

Changeset 3186644


Ignore:
Timestamp:
11/12/2024 04:50:28 PM (13 months ago)
Author:
andreamk
Message:

Staging 2 version 1.5.11.2

Location:
duplicator/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • duplicator/trunk/classes/class.plugin.upgrade.php

    r2990955 r3186644  
    138138        global $wpdb;
    139139
    140         $table_name = $wpdb->prefix . "duplicator_packages";
     140        $charset_collate = $wpdb->get_charset_collate();
     141        $table_name      = $wpdb->prefix . "duplicator_packages";
    141142
    142143        //PRIMARY KEY must have 2 spaces before for dbDelta to work
     
    151152               package LONGTEXT NOT NULL,
    152153               PRIMARY KEY  (id),
    153                KEY hash (hash))";
     154               KEY hash (hash)) {$charset_collate}";
    154155
    155156        $abs_path = duplicator_get_abs_path();
  • duplicator/trunk/define.php

    r3166091 r3186644  
    1212
    1313if (function_exists('plugin_dir_url')) {
    14     define('DUPLICATOR_VERSION', '1.5.11.1');
     14    define('DUPLICATOR_VERSION', '1.5.11.2');
    1515    define('DUPLICATOR_PLUGIN_URL', plugin_dir_url(__FILE__));
    1616    define('DUPLICATOR_SITE_URL', get_site_url());
  • duplicator/trunk/duplicator.php

    r3166091 r3186644  
    55 * Plugin URI: https://duplicator.com/
    66 * Description: Migrate and backup a copy of your WordPress files and database. Duplicate and move a site from one location to another quickly.
    7  * Version: 1.5.11.1
     7 * Version: 1.5.11.2
    88 * Requires at least: 4.9
    99 * Tested up to: 6.6
  • duplicator/trunk/installer/dup-installer/main.installer.php

    r3166091 r3186644  
    3939}
    4040
    41 define('DUPX_VERSION', '1.5.11.1');
     41define('DUPX_VERSION', '1.5.11.2');
    4242define('DUPX_INIT', str_replace('\\', '/', dirname(__FILE__)));
    4343define('DUPX_ROOT', preg_match('/^[\\\\\/]?$/', dirname(DUPX_INIT)) ? '/' : dirname(DUPX_INIT));
Note: See TracChangeset for help on using the changeset viewer.