Version Description
- Thanks to @fiddla for debugging all this, as update_option with a value equals to true is saved as 1 in the database, we couldn't use the ==! or ==
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.10.6.8.1 |
Comparing to | |
See all releases |
Code changes from version 1.10.6.8 to 1.10.6.8.1
- import-users-from-csv-with-meta.php +2 -2
- readme.txt +4 -1
import-users-from-csv-with-meta.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Import users from CSV with meta
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: This plugins allows to import users using CSV files to WP database automatically
|
6 |
-
Version: 1.10.6.8
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -441,7 +441,7 @@ function acui_cron_process(){
|
|
441 |
}
|
442 |
|
443 |
function acui_cron_process_auto_rename () {
|
444 |
-
if( get_option( "acui_cron_path_to_move_auto_rename" )
|
445 |
return;
|
446 |
|
447 |
$movefile = get_option( "acui_cron_path_to_move");
|
3 |
Plugin Name: Import users from CSV with meta
|
4 |
Plugin URI: https://www.codection.com
|
5 |
Description: This plugins allows to import users using CSV files to WP database automatically
|
6 |
+
Version: 1.10.6.8.1
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
441 |
}
|
442 |
|
443 |
function acui_cron_process_auto_rename () {
|
444 |
+
if( get_option( "acui_cron_path_to_move_auto_rename" ) != true )
|
445 |
return;
|
446 |
|
447 |
$movefile = get_option( "acui_cron_path_to_move");
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://paypal.me/codection
|
|
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: 4.8
|
7 |
-
Stable tag: 1.10.6.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -70,6 +70,9 @@ Plugin will automatically detect:
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
73 |
= 1.10.6.8 =
|
74 |
* Bug fixed (now yes) when moving file including date and time thanks to @fiddla
|
75 |
|
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: 4.8
|
7 |
+
Stable tag: 1.10.6.8.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
+
= 1.10.6.8.1 =
|
74 |
+
* Thanks to @fiddla for debugging all this, as update_option with a value equals to true is saved as 1 in the database, we couldn't use the ==! or === operator to see if the option was active or not. Sorry for so many updates those days with this problems and thanks for the debugging
|
75 |
+
|
76 |
= 1.10.6.8 =
|
77 |
* Bug fixed (now yes) when moving file including date and time thanks to @fiddla
|
78 |
|