Plugin Directory

Changeset 2972381


Ignore:
Timestamp:
09/27/2023 07:13:31 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

    r2972362 r2972381  
    55Plugin URI: https://www.opcodespace.com
    66Author: Opcodespace <mehedee@opcodespace.com>
    7 Version: 1.3.10
     7Version: 1.3.11
    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.10');
     15define('SEIP_PLUGIN_VERSION', '1.3.11');
    1616define('PAID_TEXT', '<small class="paid_text">(This is for paid user)</small>');
    1717
  • simple-export-import-for-acf-data/trunk/readme.txt

    r2972362 r2972381  
    55Tested up to: 6.3.1
    66Requires PHP: 7.0
    7 Stable tag: 1.3.10
     7Stable tag: 1.3.11
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9696
    9797== Changelog ==
     98= 1.3.11 =
     99* Bug Fixed: sanitize json file
     100
    98101= 1.3.9 =
    99102* Bug Fixed: undefined destroy fixed in js.
  • simple-export-import-for-acf-data/trunk/view/export_import.php

    r2970520 r2972381  
    7676<div class="export_import_wrapper">
    7777    <h5 class="main_title">Simple Export Import for ACF Data</h5>
    78     <?php $tab = sanitize_text_field($_GET['tab']) ?>
     78    <?php $tab = isset($_GET['tab']) ? sanitize_text_field($_GET['tab']) : 'export' ?>
    7979    <nav class="nav-tab-wrapper">
    8080        <a class="nav-tab <?php echo $tab === 'export' || empty($tab) ? 'nav-tab-active' : '' ?>"
Note: See TracChangeset for help on using the changeset viewer.