Changeset 3338701
- Timestamp:
- 08/04/2025 05:21:46 AM (7 months ago)
- Location:
- wp-import-export-lite/trunk
- Files:
-
- 3 edited
-
includes/classes/import/class-wpie-upload-validate.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp-import-export-lite.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-import-export-lite/trunk/includes/classes/import/class-wpie-upload-validate.php
r3323402 r3338701 82 82 83 83 if ( preg_match( '%\W(txt)$%i', trim( $file_name ) ) ) { 84 85 if ( $fileFormat === false ) {84 85 if ( $fileFormat === false || !in_array( $fileFormat, [ 'csv', 'json', 'xml' ] ) ) { 86 86 $fileFormat = isset( $_GET[ 'activeFormat' ] ) && !empty( $_GET[ 'activeFormat' ] ) && in_array( $_GET[ 'activeFormat' ], [ 'csv', 'json', 'xml' ] ) ? wpie_sanitize_field( $_GET[ 'activeFormat' ] ) : "csv"; 87 87 } -
wp-import-export-lite/trunk/readme.txt
r3323402 r3338701 6 6 Tested up to: 6.8 7 7 Requires PHP: 5.6 8 Stable tag: 3.9. 298 Stable tag: 3.9.30 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
wp-import-export-lite/trunk/wp-import-export-lite.php
r3323402 r3338701 4 4 Plugin Name: WP Import Export Lite 5 5 Description: The Advanced and powerful solution for importing and exporting data to WordPress. Import and Export to Posts, Pages, and Custom Post Types. Ability to update existing data, and much more. 6 Version: 3.9. 296 Version: 3.9.30 7 7 Author: VJInfotech 8 8 Author URI: http://www.vjinfotech.com … … 20 20 // Plugin version 21 21 if ( !defined( 'WPIE_PLUGIN_VERSION' ) ) { 22 define( 'WPIE_PLUGIN_VERSION', '3.9. 29' );22 define( 'WPIE_PLUGIN_VERSION', '3.9.30' ); 23 23 } 24 24 // Plugin version
Note: See TracChangeset
for help on using the changeset viewer.