Plugin Directory

Changeset 2155983


Ignore:
Timestamp:
09/13/2019 07:50:10 AM (7 years ago)
Author:
conoha
Message:

version 1.1.5
bug fix

Location:
wing-migrator
Files:
40 added
3 edited

Legend:

Unmodified
Added
Removed
  • wing-migrator/trunk/classes/mysql/class-wwm-migration-mysql-query.php

    r2153901 r2155983  
    297297        global $wpdb;
    298298        $result = $wpdb->query( $query );
     299        if ( $wpdb->last_error !== '' ) {
     300            return false;
     301        }
    299302        if ( $result ) {
    300303            return true;
     
    742745            if ( ! $res ) {
    743746                $this->logger->warning( 'fail to execute query: ' . $sql );
     747                throw new Exception( 'fail to execute query' );
    744748            }
    745749            if ( ! feof( $handle ) ) {
  • wing-migrator/trunk/readme.txt

    r2154545 r2155983  
    55Tested up to: 5.1.1
    66Requires PHP: 5.3
    7 Stable tag: 1.1.4
     7Stable tag: 1.1.5
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5252
    5353== Changelog ==
     54= 1.1.5 =
     55* bug fix.
     56
    5457= 1.1.4 =
    5558* bug fix.
  • wing-migrator/trunk/wing-migrator.php

    r2154545 r2155983  
    44Plugin URI: https://wordpress.org/plugins/wing-migrator/
    55Description: ConoHa WINGのWordPressで「WING WordPress Migration」をご利用いただくためのプラグインです。
    6 Version: 1.1.4
     6Version: 1.1.5
    77Author: GMO Internet Inc.
    88Author URI: https://www.conoha.jp/
     
    3333
    3434define( 'WWM_BACKUP_INFO_WP_OPTION_KEY', 'wwm_backup_info' );
    35 define( 'WWM_BACKUP_BULK_INSERT_LIMIT', 50 );
     35define( 'WWM_BACKUP_BULK_INSERT_LIMIT', 10 );
    3636
    3737define( 'WWM_RESTORE_INFO_WP_OPTION_KEY', 'wwm_restore_info' );
Note: See TracChangeset for help on using the changeset viewer.