Changeset 3342811
- Timestamp:
- 08/11/2025 11:17:34 AM (8 months ago)
- Location:
- import-users-from-csv-with-meta
- Files:
-
- 6 edited
- 1 copied
-
tags/1.29.2 (copied) (copied from import-users-from-csv-with-meta/trunk)
-
tags/1.29.2/classes/import.php (modified) (2 diffs)
-
tags/1.29.2/import-users-from-csv-with-meta.php (modified) (2 diffs)
-
tags/1.29.2/readme.txt (modified) (2 diffs)
-
trunk/classes/import.php (modified) (2 diffs)
-
trunk/import-users-from-csv-with-meta.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
import-users-from-csv-with-meta/tags/1.29.2/classes/import.php
r3282917 r3342811 730 730 731 731 function import_users( $file, $form_data, $_is_cron = false, $_is_frontend = false, $step = 1, $initial_row = 0, $time_per_step = -1 ){ 732 if( !function_exists( 'wp_delete_user' ) ) { 733 require_once( ABSPATH . 'wp-admin/includes/user.php' ); 734 } 735 732 736 $time_start = microtime( true ); 733 737 … … 938 942 939 943 if( $change_role_not_present_flag && !$delete_users_flag ): 940 require_once( ABSPATH . 'wp-admin/includes/user.php');941 942 944 $args = array( 943 945 'fields' => array( 'ID' ), -
import-users-from-csv-with-meta/tags/1.29.2/import-users-from-csv-with-meta.php
r3294003 r3342811 4 4 Plugin URI: https://www.codection.com 5 5 Description: Using this plugin you will be able to import and export users or customers choosing many options and interacting with lots of other plugins 6 Version: 1.29. 16 Version: 1.29.2 7 7 Author: codection 8 8 Author URI: https://codection.com … … 12 12 Domain Path: /languages 13 13 */ 14 15 14 if ( ! defined( 'ABSPATH' ) ) 16 15 exit; 17 16 18 define( 'ACUI_VERSION', '1.29. 1' );17 define( 'ACUI_VERSION', '1.29.2' ); 19 18 20 19 class ImportExportUsersCustomers{ -
import-users-from-csv-with-meta/tags/1.29.2/readme.txt
r3294003 r3342811 4 4 Tags: csv, import, export, importer, exporter 5 5 Requires at least: 3.4 6 Tested up to: 6.8. 17 Stable tag: 1.29. 16 Tested up to: 6.8.2 7 Stable tag: 1.29.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 118 118 == Changelog == 119 119 120 = 1.29.2 = 121 * Fixed a problem when deleting users 122 120 123 = 1.29.1 = 121 124 * Fixed a problem when exporting in the frontend -
import-users-from-csv-with-meta/trunk/classes/import.php
r3282917 r3342811 730 730 731 731 function import_users( $file, $form_data, $_is_cron = false, $_is_frontend = false, $step = 1, $initial_row = 0, $time_per_step = -1 ){ 732 if( !function_exists( 'wp_delete_user' ) ) { 733 require_once( ABSPATH . 'wp-admin/includes/user.php' ); 734 } 735 732 736 $time_start = microtime( true ); 733 737 … … 938 942 939 943 if( $change_role_not_present_flag && !$delete_users_flag ): 940 require_once( ABSPATH . 'wp-admin/includes/user.php');941 942 944 $args = array( 943 945 'fields' => array( 'ID' ), -
import-users-from-csv-with-meta/trunk/import-users-from-csv-with-meta.php
r3294003 r3342811 4 4 Plugin URI: https://www.codection.com 5 5 Description: Using this plugin you will be able to import and export users or customers choosing many options and interacting with lots of other plugins 6 Version: 1.29. 16 Version: 1.29.2 7 7 Author: codection 8 8 Author URI: https://codection.com … … 12 12 Domain Path: /languages 13 13 */ 14 15 14 if ( ! defined( 'ABSPATH' ) ) 16 15 exit; 17 16 18 define( 'ACUI_VERSION', '1.29. 1' );17 define( 'ACUI_VERSION', '1.29.2' ); 19 18 20 19 class ImportExportUsersCustomers{ -
import-users-from-csv-with-meta/trunk/readme.txt
r3294003 r3342811 4 4 Tags: csv, import, export, importer, exporter 5 5 Requires at least: 3.4 6 Tested up to: 6.8. 17 Stable tag: 1.29. 16 Tested up to: 6.8.2 7 Stable tag: 1.29.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 118 118 == Changelog == 119 119 120 = 1.29.2 = 121 * Fixed a problem when deleting users 122 120 123 = 1.29.1 = 121 124 * Fixed a problem when exporting in the frontend
Note: See TracChangeset
for help on using the changeset viewer.