Version Description
- Fixed fatal error
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.19.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.19.1.1 to 1.19.1.2
- classes/helper.php +1 -1
- import-users-from-csv-with-meta.php +2 -3
- readme.txt +4 -1
classes/helper.php
CHANGED
@@ -311,7 +311,7 @@ class ACUI_Helper{
|
|
311 |
foreach( $element as $it => $el ){
|
312 |
if( is_wp_error( $el ) )
|
313 |
$element_string .= $el->get_error_message();
|
314 |
-
elseif( is_array( $el ) )
|
315 |
$element_string .= serialize( $el );
|
316 |
elseif( !is_int( $it ) )
|
317 |
$element_string .= $it . "=>" . $el;
|
311 |
foreach( $element as $it => $el ){
|
312 |
if( is_wp_error( $el ) )
|
313 |
$element_string .= $el->get_error_message();
|
314 |
+
elseif( is_array( $el ) || is_object( $el ) )
|
315 |
$element_string .= serialize( $el );
|
316 |
elseif( !is_int( $it ) )
|
317 |
$element_string .= $it . "=>" . $el;
|
import-users-from-csv-with-meta.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Import and export users and customers
|
4 |
Plugin URI: https://www.codection.com
|
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.19.1.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -11,11 +11,10 @@ License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
|
11 |
Text Domain: import-users-from-csv-with-meta
|
12 |
Domain Path: /languages
|
13 |
*/
|
14 |
-
|
15 |
if ( ! defined( 'ABSPATH' ) )
|
16 |
exit;
|
17 |
|
18 |
-
define( 'ACUI_VERSION', '1.19.1.
|
19 |
|
20 |
class ImportExportUsersCustomers{
|
21 |
var $file;
|
3 |
Plugin Name: Import and export users and customers
|
4 |
Plugin URI: https://www.codection.com
|
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.19.1.2
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
11 |
Text Domain: import-users-from-csv-with-meta
|
12 |
Domain Path: /languages
|
13 |
*/
|
|
|
14 |
if ( ! defined( 'ABSPATH' ) )
|
15 |
exit;
|
16 |
|
17 |
+
define( 'ACUI_VERSION', '1.19.1.2' );
|
18 |
|
19 |
class ImportExportUsersCustomers{
|
20 |
var $file;
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://codection.com/go/donate-import-users-from-csv-with-meta/
|
|
4 |
Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.8.2
|
7 |
-
Stable tag: 1.19.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -103,6 +103,9 @@ Plugin will automatically detect:
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
106 |
= 1.19.1.1 =
|
107 |
* Fixed warning in screen with import results
|
108 |
* Ko-fi donation link added
|
4 |
Tags: csv, import, importer, meta data, meta, user, users, user meta, editor, profile, custom, fields, delimiter, update, insert
|
5 |
Requires at least: 3.4
|
6 |
Tested up to: 5.8.2
|
7 |
+
Stable tag: 1.19.1.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
= 1.19.1.2 =
|
107 |
+
* Fixed fatal error
|
108 |
+
|
109 |
= 1.19.1.1 =
|
110 |
* Fixed warning in screen with import results
|
111 |
* Ko-fi donation link added
|