Version Description
- Problems with apostrophes solved
Download this release
Release Info
Developer | carazo |
Plugin | Import users from CSV with meta |
Version | 1.15.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.15.7.3 to 1.15.7.4
- classes/homepage.php +0 -6
- import-users-from-csv-with-meta.php +2 -2
- readme.txt +4 -1
classes/homepage.php
CHANGED
@@ -187,12 +187,6 @@ class ACUI_Homepage{
|
|
187 |
<div><span><?php _e( 'Become a patron', 'import-users-from-csv-with-meta'); ?></span></div>
|
188 |
</a>
|
189 |
</div>
|
190 |
-
|
191 |
-
<div class="sidebar_section" style="padding:0 !important;border:none !important;background:none !important;">
|
192 |
-
<a href="https://codection.com/how-to-transfer-your-website-to-inmotion-hosting/" target="_blank" rel="noopener">
|
193 |
-
<img src="<?php echo esc_url( plugins_url( 'assets/codection-inmotion.png', dirname( __FILE__ ) ) ); ?>"/>
|
194 |
-
</a>
|
195 |
-
</div>
|
196 |
|
197 |
<div class="sidebar_section" id="vote_us">
|
198 |
<h3><?php _e( 'Rate Us', 'import-users-from-csv-with-meta'); ?></h3>
|
187 |
<div><span><?php _e( 'Become a patron', 'import-users-from-csv-with-meta'); ?></span></div>
|
188 |
</a>
|
189 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
|
191 |
<div class="sidebar_section" id="vote_us">
|
192 |
<h3><?php _e( 'Rate Us', 'import-users-from-csv-with-meta'); ?></h3>
|
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.15.7.
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
@@ -346,7 +346,7 @@ function acui_save_mail_template( $form_data ){
|
|
346 |
|
347 |
$automatic_wordpress_email = sanitize_text_field( $form_data["automatic_wordpress_email"] );
|
348 |
$automatic_created_edited_wordpress_email = sanitize_text_field( $form_data["automatic_created_edited_wordpress_email"] );
|
349 |
-
$subject_mail = sanitize_text_field( $form_data["subject_mail"] );
|
350 |
$body_mail = wp_kses_post( stripslashes( $form_data["body_mail"] ) );
|
351 |
$template_id = intval( $form_data["template_id"] );
|
352 |
$email_template_attachment_id = intval( $form_data["email_template_attachment_id"] );
|
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.15.7.4
|
7 |
Author: codection
|
8 |
Author URI: https://codection.com
|
9 |
License: GPL2
|
346 |
|
347 |
$automatic_wordpress_email = sanitize_text_field( $form_data["automatic_wordpress_email"] );
|
348 |
$automatic_created_edited_wordpress_email = sanitize_text_field( $form_data["automatic_created_edited_wordpress_email"] );
|
349 |
+
$subject_mail = sanitize_text_field( stripslashes_deep( $form_data["subject_mail"] ) );
|
350 |
$body_mail = wp_kses_post( stripslashes( $form_data["body_mail"] ) );
|
351 |
$template_id = intval( $form_data["template_id"] );
|
352 |
$email_template_attachment_id = intval( $form_data["email_template_attachment_id"] );
|
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.5
|
7 |
-
Stable tag: 1.15.7.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -99,6 +99,9 @@ Plugin will automatically detect:
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
102 |
= 1.15.7.3 =
|
103 |
* Tested up to WordPress 5.5
|
104 |
* Improvements in timestamp data export
|
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.5
|
7 |
+
Stable tag: 1.15.7.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
= 1.15.7.4 =
|
103 |
+
* Problems with apostrophes solved
|
104 |
+
|
105 |
= 1.15.7.3 =
|
106 |
* Tested up to WordPress 5.5
|
107 |
* Improvements in timestamp data export
|