Plugin Directory

Changeset 3393511


Ignore:
Timestamp:
11/11/2025 09:44:55 AM (3 months ago)
Author:
kovalchik8
Message:

Fixed ACF adapter.

Location:
magic-export-import
Files:
58 added
3 edited

Legend:

Unmodified
Added
Removed
  • magic-export-import/trunk/class-magic-ex-im-setup.php

    r3373715 r3393511  
    33 * Plugin Name: Magic Export & Import
    44 * Description: The ultimate tool to migrate any content including posts, terms, users, comments, WooCommerce shop orders, menus and ACF Options pages.
    5  * Version: 1.1.5
     5 * Version: 1.1.6
    66 * Requires at least: 6.2
    77 * Requires PHP: 7.4
  • magic-export-import/trunk/includes/plugin-adapters/class-magic-ex-im-adapter-acf.php

    r3373715 r3393511  
    775775
    776776                    foreach ( $arr_with_needed_keys as $key => $value ) {
    777 
    778                         $result[ $key ] = is_array( $value )
    779                             ? $rebuild_arr_fn( $value, $values[ $i++ ] )
    780                             : $values[ $i++ ];
     777                        $result[ $key ] = is_array( $value ) && is_array( $values[$i] )
     778                            ? $rebuild_arr_fn( $value, $values[ $i ] )
     779                            : $values[ $i ];
     780                        $i++;
    781781                    }
    782782
  • magic-export-import/trunk/readme.txt

    r3373715 r3393511  
    44Tags: export, import, content migration, csv, custom fields
    55Tested up to: 6.8
    6 Stable tag: 1.1.5
     6Stable tag: 1.1.6
    77License: GPL v3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.txt
     
    7979== Changelog ==
    8080
     81= 1.1.6 =
     82* Fixed ACF adapter.
     83
    8184= 1.1.5 =
    8285* Adjusted Polylang adapter.
Note: See TracChangeset for help on using the changeset viewer.