Changeset 2972381
- Timestamp:
- 09/27/2023 07:13:31 PM (3 years ago)
- Location:
- simple-export-import-for-acf-data/trunk
- Files:
-
- 3 edited
-
app.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
view/export_import.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simple-export-import-for-acf-data/trunk/app.php
r2972362 r2972381 5 5 Plugin URI: https://www.opcodespace.com 6 6 Author: Opcodespace <mehedee@opcodespace.com> 7 Version: 1.3.1 07 Version: 1.3.11 8 8 Text Domain: simple-export-import-for-acf-data 9 9 */ … … 13 13 define("SEIP_VIEW_PATH", wp_normalize_path(plugin_dir_path(__FILE__) . "view/")); 14 14 define("SEIP_ASSETSURL", plugins_url("assets/", __FILE__)); 15 define('SEIP_PLUGIN_VERSION', '1.3.1 0');15 define('SEIP_PLUGIN_VERSION', '1.3.11'); 16 16 define('PAID_TEXT', '<small class="paid_text">(This is for paid user)</small>'); 17 17 -
simple-export-import-for-acf-data/trunk/readme.txt
r2972362 r2972381 5 5 Tested up to: 6.3.1 6 6 Requires PHP: 7.0 7 Stable tag: 1.3.1 07 Stable tag: 1.3.11 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 96 96 97 97 == Changelog == 98 = 1.3.11 = 99 * Bug Fixed: sanitize json file 100 98 101 = 1.3.9 = 99 102 * Bug Fixed: undefined destroy fixed in js. -
simple-export-import-for-acf-data/trunk/view/export_import.php
r2970520 r2972381 76 76 <div class="export_import_wrapper"> 77 77 <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' ?> 79 79 <nav class="nav-tab-wrapper"> 80 80 <a class="nav-tab <?php echo $tab === 'export' || empty($tab) ? 'nav-tab-active' : '' ?>"
Note: See TracChangeset
for help on using the changeset viewer.