Changeset 3186644
- Timestamp:
- 11/12/2024 04:50:28 PM (13 months ago)
- Location:
- duplicator/trunk
- Files:
-
- 4 edited
-
classes/class.plugin.upgrade.php (modified) (2 diffs)
-
define.php (modified) (1 diff)
-
duplicator.php (modified) (1 diff)
-
installer/dup-installer/main.installer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
duplicator/trunk/classes/class.plugin.upgrade.php
r2990955 r3186644 138 138 global $wpdb; 139 139 140 $table_name = $wpdb->prefix . "duplicator_packages"; 140 $charset_collate = $wpdb->get_charset_collate(); 141 $table_name = $wpdb->prefix . "duplicator_packages"; 141 142 142 143 //PRIMARY KEY must have 2 spaces before for dbDelta to work … … 151 152 package LONGTEXT NOT NULL, 152 153 PRIMARY KEY (id), 153 KEY hash (hash)) ";154 KEY hash (hash)) {$charset_collate}"; 154 155 155 156 $abs_path = duplicator_get_abs_path(); -
duplicator/trunk/define.php
r3166091 r3186644 12 12 13 13 if (function_exists('plugin_dir_url')) { 14 define('DUPLICATOR_VERSION', '1.5.11. 1');14 define('DUPLICATOR_VERSION', '1.5.11.2'); 15 15 define('DUPLICATOR_PLUGIN_URL', plugin_dir_url(__FILE__)); 16 16 define('DUPLICATOR_SITE_URL', get_site_url()); -
duplicator/trunk/duplicator.php
r3166091 r3186644 5 5 * Plugin URI: https://duplicator.com/ 6 6 * 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. 17 * Version: 1.5.11.2 8 8 * Requires at least: 4.9 9 9 * Tested up to: 6.6 -
duplicator/trunk/installer/dup-installer/main.installer.php
r3166091 r3186644 39 39 } 40 40 41 define('DUPX_VERSION', '1.5.11. 1');41 define('DUPX_VERSION', '1.5.11.2'); 42 42 define('DUPX_INIT', str_replace('\\', '/', dirname(__FILE__))); 43 43 define('DUPX_ROOT', preg_match('/^[\\\\\/]?$/', dirname(DUPX_INIT)) ? '/' : dirname(DUPX_INIT));
Note: See TracChangeset
for help on using the changeset viewer.