Version Description
- passwordreseturl now shows a link in HTML
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.14.0.8 |
Comparing to | |
See all releases |
Code changes from version 1.14.0.7 to 1.14.0.8
- import-users-from-csv-with-meta.php +1 -1
- importer.php +1 -0
- readme.txt +5 -2
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.14.0.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
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.14.0.8
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
importer.php
CHANGED
@@ -573,6 +573,7 @@ function acui_import_users( $file, $form_data, $attach_id = 0, $is_cron = false,
|
|
573 |
|
574 |
if( !is_wp_error( $key ) ){
|
575 |
$passwordreseturl = apply_filters( 'acui_email_passwordreseturl', network_site_url( 'wp-login.php?action=rp&key=' . $key . '&login=' . rawurlencode( $user_login ), 'login' ) );
|
|
|
576 |
$body_mail = str_replace( "**passwordreseturl**", $passwordreseturl, $body_mail );
|
577 |
}
|
578 |
|
573 |
|
574 |
if( !is_wp_error( $key ) ){
|
575 |
$passwordreseturl = apply_filters( 'acui_email_passwordreseturl', network_site_url( 'wp-login.php?action=rp&key=' . $key . '&login=' . rawurlencode( $user_login ), 'login' ) );
|
576 |
+
$passwordreseturl = wp_sprintf( '<a href="%s">%s</a>', $passwordreseturl, __( 'Password reset link', 'import-users-from-csv-with-meta' ) );
|
577 |
$body_mail = str_replace( "**passwordreseturl**", $passwordreseturl, $body_mail );
|
578 |
}
|
579 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: carazo, hornero
|
|
3 |
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.
|
7 |
-
Stable tag: 1.14.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -90,6 +90,9 @@ Plugin will automatically detect:
|
|
90 |
|
91 |
== Changelog ==
|
92 |
|
|
|
|
|
|
|
93 |
= 1.14.0.7 =
|
94 |
* Filter improved to avoid strange characters in emails
|
95 |
|
3 |
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.2
|
7 |
+
Stable tag: 1.14.0.8
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
90 |
|
91 |
== Changelog ==
|
92 |
|
93 |
+
= 1.14.0.8 =
|
94 |
+
* **passwordreseturl** now shows a link in HTML
|
95 |
+
|
96 |
= 1.14.0.7 =
|
97 |
* Filter improved to avoid strange characters in emails
|
98 |
|