Plugin Directory

Changeset 3342811


Ignore:
Timestamp:
08/11/2025 11:17:34 AM (8 months ago)
Author:
carazo
Message:

Fixed a problem deleting users

Location:
import-users-from-csv-with-meta
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • import-users-from-csv-with-meta/tags/1.29.2/classes/import.php

    r3282917 r3342811  
    730730
    731731    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       
    732736        $time_start = microtime( true );
    733737
     
    938942
    939943        if( $change_role_not_present_flag && !$delete_users_flag ):
    940             require_once( ABSPATH . 'wp-admin/includes/user.php'); 
    941 
    942944            $args = array(
    943945                'fields' => array( 'ID' ),
  • import-users-from-csv-with-meta/tags/1.29.2/import-users-from-csv-with-meta.php

    r3294003 r3342811  
    44Plugin URI:     https://www.codection.com
    55Description:    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.1
     6Version:        1.29.2
    77Author:         codection
    88Author URI:     https://codection.com
     
    1212Domain Path: /languages
    1313*/
    14 
    1514if ( ! defined( 'ABSPATH' ) )
    1615    exit;
    1716
    18 define( 'ACUI_VERSION', '1.29.1' );
     17define( 'ACUI_VERSION', '1.29.2' );
    1918
    2019class ImportExportUsersCustomers{
  • import-users-from-csv-with-meta/tags/1.29.2/readme.txt

    r3294003 r3342811  
    44Tags: csv, import, export, importer, exporter
    55Requires at least: 3.4
    6 Tested up to: 6.8.1
    7 Stable tag: 1.29.1
     6Tested up to: 6.8.2
     7Stable tag: 1.29.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    118118== Changelog ==
    119119
     120= 1.29.2 =
     121*   Fixed a problem when deleting users
     122
    120123= 1.29.1 =
    121124*   Fixed a problem when exporting in the frontend
  • import-users-from-csv-with-meta/trunk/classes/import.php

    r3282917 r3342811  
    730730
    731731    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       
    732736        $time_start = microtime( true );
    733737
     
    938942
    939943        if( $change_role_not_present_flag && !$delete_users_flag ):
    940             require_once( ABSPATH . 'wp-admin/includes/user.php'); 
    941 
    942944            $args = array(
    943945                'fields' => array( 'ID' ),
  • import-users-from-csv-with-meta/trunk/import-users-from-csv-with-meta.php

    r3294003 r3342811  
    44Plugin URI:     https://www.codection.com
    55Description:    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.1
     6Version:        1.29.2
    77Author:         codection
    88Author URI:     https://codection.com
     
    1212Domain Path: /languages
    1313*/
    14 
    1514if ( ! defined( 'ABSPATH' ) )
    1615    exit;
    1716
    18 define( 'ACUI_VERSION', '1.29.1' );
     17define( 'ACUI_VERSION', '1.29.2' );
    1918
    2019class ImportExportUsersCustomers{
  • import-users-from-csv-with-meta/trunk/readme.txt

    r3294003 r3342811  
    44Tags: csv, import, export, importer, exporter
    55Requires at least: 3.4
    6 Tested up to: 6.8.1
    7 Stable tag: 1.29.1
     6Tested up to: 6.8.2
     7Stable tag: 1.29.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    118118== Changelog ==
    119119
     120= 1.29.2 =
     121*   Fixed a problem when deleting users
     122
    120123= 1.29.1 =
    121124*   Fixed a problem when exporting in the frontend
Note: See TracChangeset for help on using the changeset viewer.