Plugin Directory

Changeset 2972362


Ignore:
Timestamp:
09/27/2023 06:31:48 PM (3 years ago)
Author:
opcodespace
Message:

Json bug fix

Location:
simple-export-import-for-acf-data/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • simple-export-import-for-acf-data/trunk/app.php

    r2970520 r2972362  
    55Plugin URI: https://www.opcodespace.com
    66Author: Opcodespace <mehedee@opcodespace.com>
    7 Version: 1.3.9
     7Version: 1.3.10
    88Text Domain: simple-export-import-for-acf-data
    99*/
     
    1313define("SEIP_VIEW_PATH", wp_normalize_path(plugin_dir_path(__FILE__) . "view/"));
    1414define("SEIP_ASSETSURL", plugins_url("assets/", __FILE__));
    15 define('SEIP_PLUGIN_VERSION', '1.3.9');
     15define('SEIP_PLUGIN_VERSION', '1.3.10');
    1616define('PAID_TEXT', '<small class="paid_text">(This is for paid user)</small>');
    1717
  • simple-export-import-for-acf-data/trunk/readme.txt

    r2970520 r2972362  
    55Tested up to: 6.3.1
    66Requires PHP: 7.0
    7 Stable tag: 1.3.9
     7Stable tag: 1.3.10
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • simple-export-import-for-acf-data/trunk/src/SeipExport.php

    r2961647 r2972362  
    5757            }
    5858
    59             $data = json_encode($post_data);
     59            $data = wp_json_encode($post_data);
    6060
    6161            $json_file_name = 'post-export-'.date('y-m-d').'.json';
Note: See TracChangeset for help on using the changeset viewer.