All-in-One WP Migration - Version 4.12

Version Description

  • Fix an issue with Google Drive extension
Download this release

Release Info

Developer bangelov
Plugin Icon 128x128 All-in-One WP Migration
Version 4.12
Comparing to
See all releases

Code changes from version 4.11 to 4.12

all-in-one-wp-migration.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: Migration tool for all your blog data. Import or Export your blog content with a single click.
6
  * Author: ServMask
7
  * Author URI: https://servmask.com/
8
- * Version: 4.11
9
  * Text Domain: all-in-one-wp-migration
10
  * Domain Path: /languages
11
  * Network: True
5
  * Description: Migration tool for all your blog data. Import or Export your blog content with a single click.
6
  * Author: ServMask
7
  * Author URI: https://servmask.com/
8
+ * Version: 4.12
9
  * Text Domain: all-in-one-wp-migration
10
  * Domain Path: /languages
11
  * Network: True
constants.php CHANGED
@@ -38,7 +38,7 @@ if ( function_exists( 'gethostname' ) && in_array( gethostname(), $local ) ) {
38
  // ==================
39
  // = Plugin Version =
40
  // ==================
41
- define( 'AI1WM_VERSION', '4.11' );
42
 
43
  // ===============
44
  // = Plugin Name =
38
  // ==================
39
  // = Plugin Version =
40
  // ==================
41
+ define( 'AI1WM_VERSION', '4.12' );
42
 
43
  // ===============
44
  // = Plugin Name =
lib/model/class-ai1wm-export-abstract.php CHANGED
@@ -401,7 +401,7 @@ abstract class Ai1wm_Export_Abstract {
401
  }
402
 
403
  // Resolve domain
404
- $url = add_query_arg( $this->args, admin_url( 'admin-ajax.php?action=ai1wm_export' ) );
405
  $hostname = parse_url( $url, PHP_URL_HOST );
406
  $port = parse_url( $url, PHP_URL_PORT );
407
  $ip = gethostbyname( $hostname );
401
  }
402
 
403
  // Resolve domain
404
+ $url = add_query_arg( urlencode_deep( $this->args ), admin_url( 'admin-ajax.php?action=ai1wm_export' ) );
405
  $hostname = parse_url( $url, PHP_URL_HOST );
406
  $port = parse_url( $url, PHP_URL_PORT );
407
  $ip = gethostbyname( $hostname );
lib/model/class-ai1wm-import-abstract.php CHANGED
@@ -396,7 +396,7 @@ abstract class Ai1wm_Import_Abstract {
396
  }
397
 
398
  // Resolve domain
399
- $url = add_query_arg( $this->args, admin_url( 'admin-ajax.php?action=ai1wm_import' ) );
400
  $hostname = parse_url( $url, PHP_URL_HOST );
401
  $port = parse_url( $url, PHP_URL_PORT );
402
  $ip = gethostbyname( $hostname );
396
  }
397
 
398
  // Resolve domain
399
+ $url = add_query_arg( urlencode_deep( $this->args ), admin_url( 'admin-ajax.php?action=ai1wm_import' ) );
400
  $hostname = parse_url( $url, PHP_URL_HOST );
401
  $port = parse_url( $url, PHP_URL_PORT );
402
  $ip = gethostbyname( $hostname );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: yani.iliev, bangelov, pimjitsawang
3
  Tags: db migration, migration, wordpress migration, db backup, db restore, website backup, website restore, website migration, website deploy, wordpress deploy, db backup, database export, database serialization, database find replace
4
  Requires at least: 3.3
5
  Tested up to: 4.3
6
- Stable tag: 4.11
7
  License: GPLv2 or later
8
 
9
  All-in-One WP Migration is the only tool that you will ever need to migrate a WordPress site.
@@ -60,6 +60,9 @@ All in One WP Plugin is the first plugin to offer true mobile experience on Word
60
  3. Plugin Menu
61
 
62
  == Changelog ==
 
 
 
63
  = 4.11 =
64
  * Fix content filters on export
65
 
3
  Tags: db migration, migration, wordpress migration, db backup, db restore, website backup, website restore, website migration, website deploy, wordpress deploy, db backup, database export, database serialization, database find replace
4
  Requires at least: 3.3
5
  Tested up to: 4.3
6
+ Stable tag: 4.12
7
  License: GPLv2 or later
8
 
9
  All-in-One WP Migration is the only tool that you will ever need to migrate a WordPress site.
60
  3. Plugin Menu
61
 
62
  == Changelog ==
63
+ = 4.12 =
64
+ * Fix an issue with Google Drive extension
65
+
66
  = 4.11 =
67
  * Fix content filters on export
68