Plugin Directory

Changeset 2725756


Ignore:
Timestamp:
05/18/2022 03:22:52 AM (4 years ago)
Author:
conoha
Message:

version 1.1.7
mod support php8

Location:
wing-migrator
Files:
42 added
4 edited

Legend:

Unmodified
Added
Removed
  • wing-migrator/trunk/classes/actions/class-wwm-backup-action-backup.php

    r2407233 r2725756  
    8787        $backup_dir_path = $this->make_dir( $backup_dir_name );
    8888        $this->wwm_info->set_status( WWM_MIGRATION_STATUS_BACKUP_START );
     89        $this->wwm_info->set_backup_dir_path( $backup_dir_path );
    8990        $this->logger = $this->wwm_info->get_logger();
    9091        $this->logger->info( '===========  start wwm-backup  ===========' );
     
    9697        }
    9798        $this->wwm_info->set_prefix( $prefix );
    98         $this->wwm_info->set_backup_dir_path( $backup_dir_path );
    9999
    100100        if ( $archive_type !== 'zip' ) {
  • wing-migrator/trunk/classes/mysql/class-wwm-migration-mysql-query.php

    r2155983 r2725756  
    392392
    393393    public function __destruct() {
    394         if ( isset( $this->dump_file ) ) {
     394        if ( isset( $this->dump_file ) && is_resource( $this->dump_file ) ) {
    395395            @fclose( $this->dump_file );
    396396        }
  • wing-migrator/trunk/readme.txt

    r2407233 r2725756  
    33Tags: Conoha, Migration
    44Requires at least: 3.8.5
    5 Tested up to: 5.3.4
     5Tested up to: 5.9.3
    66Requires PHP: 5.3
    7 Stable tag: 1.1.6
     7Stable tag: 1.1.7
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5252
    5353== Changelog ==
     54= 1.1.7 =
     55* Supports php8.
     56
    5457= 1.1.6 =
    5558* Added file installation function.
  • wing-migrator/trunk/wing-migrator.php

    r2407233 r2725756  
    44Plugin URI: https://wordpress.org/plugins/wing-migrator/
    55Description: ConoHa WINGのWordPressで「WING WordPress Migration」をご利用いただくためのプラグインです。
    6 Version: 1.1.6
     6Version: 1.1.7
    77Author: GMO Internet Inc.
    88Author URI: https://www.conoha.jp/
Note: See TracChangeset for help on using the changeset viewer.