Version Description
- Filter improved to avoid strange characters in emails
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.14.0.7 |
Comparing to | |
See all releases |
Code changes from version 1.14.0.6 to 1.14.0.7
- 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.14.0.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -433,7 +433,7 @@ function acui_save_mail_template( $form_data ){
|
|
433 |
|
434 |
$automattic_wordpress_email = sanitize_text_field( $form_data["automattic_wordpress_email"] );
|
435 |
$subject_mail = sanitize_text_field( $form_data["subject_mail"] );
|
436 |
-
$body_mail = wp_kses_post( $form_data["body_mail"] );
|
437 |
$template_id = intval( $form_data["template_id"] );
|
438 |
$email_template_attachment_id = intval( $form_data["email_template_attachment_id"] );
|
439 |
|
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
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
433 |
|
434 |
$automattic_wordpress_email = sanitize_text_field( $form_data["automattic_wordpress_email"] );
|
435 |
$subject_mail = sanitize_text_field( $form_data["subject_mail"] );
|
436 |
+
$body_mail = wp_kses_post( stripslashes( $form_data["body_mail"] ) );
|
437 |
$template_id = intval( $form_data["template_id"] );
|
438 |
$email_template_attachment_id = intval( $form_data["email_template_attachment_id"] );
|
439 |
|
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.1
|
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.6 =
|
94 |
* Notice fixed from last change
|
95 |
|
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.1
|
7 |
+
Stable tag: 1.14.0.7
|
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.7 =
|
94 |
+
* Filter improved to avoid strange characters in emails
|
95 |
+
|
96 |
= 1.14.0.6 =
|
97 |
* Notice fixed from last change
|
98 |
|