File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ Contributors: sailthru-wp
3
3
Tags: personalization, email,
4
4
Requires at least: 5.5
5
5
Tested up to: 5.7
6
- Stable tag: 4.3.6
6
+ Stable tag: 4.3.7
7
7
8
8
Provides an integration with Sailthru
9
9
Original file line number Diff line number Diff line change 1
1
# Changelog
2
+ ## v4.3.7 (2024-06-06)
3
+ Resolved issue with quotes not encoding properly
4
+
2
5
## v4.3.6 (2024-06-06)
3
6
Quotes encoding issue fixed
4
7
Original file line number Diff line number Diff line change 3
3
Plugin Name: Sailthru for WordPress
4
4
Plugin URI: http://sailthru.com/
5
5
Description: Add the power of Sailthru to your WordPress set up.
6
- Version: 4.3.6
6
+ Version: 4.3.7
7
7
Requires at least: 5.5
8
8
Author: Sailthru
9
9
Author URI: http://sailthru.com
36
36
* @var const $version The current version of the plugin.
37
37
*/
38
38
if ( ! defined ( 'SAILTHRU_PLUGIN_VERSION ' ) ) {
39
- define ( 'SAILTHRU_PLUGIN_VERSION ' , '4.3.6 ' );
39
+ define ( 'SAILTHRU_PLUGIN_VERSION ' , '4.3.7 ' );
40
40
}
41
41
42
42
if ( ! defined ( 'SAILTHRU_PLUGIN_PATH ' ) ) {
Original file line number Diff line number Diff line change @@ -353,7 +353,7 @@ function add_subscriber() {
353
353
}
354
354
} else {
355
355
$ var_name = str_replace ( 'custom_ ' , '' , $ name_stripped );
356
- $ vars [ $ var_name ] = sanitize_text_field ( $ _POST [ 'custom_ ' . $ name_stripped ] );
356
+ $ vars [ $ var_name ] = sanitize_text_field ( stripslashes ( $ _POST [ 'custom_ ' . $ name_stripped ] ) );
357
357
}
358
358
}
359
359
}
You can’t perform that action at this time.
0 commit comments