Skip to content

Commit

Permalink
Merge pull request #121 from sailthru/INT-889-quotes-encoding-fixed
Browse files Browse the repository at this point in the history
[INT-889] Resolved-issue-with-quotes-not-encoding-properly
  • Loading branch information
PolepalliGayathri authored Jun 6, 2024
2 parents 8b2d83a + ebc0b3a commit 9dc532d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: sailthru-wp
Tags: personalization, email,
Requires at least: 5.5
Tested up to: 5.7
Stable tag: 4.3.6
Stable tag: 4.3.7

Provides an integration with Sailthru

Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## v4.3.7 (2024-06-06)
Resolved issue with quotes not encoding properly

## v4.3.6 (2024-06-06)
Quotes encoding issue fixed

Expand Down
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Sailthru for WordPress
Plugin URI: http://sailthru.com/
Description: Add the power of Sailthru to your WordPress set up.
Version: 4.3.6
Version: 4.3.7
Requires at least: 5.5
Author: Sailthru
Author URI: http://sailthru.com
Expand Down Expand Up @@ -36,7 +36,7 @@
* @var const $version The current version of the plugin.
*/
if ( ! defined( 'SAILTHRU_PLUGIN_VERSION' ) ) {
define( 'SAILTHRU_PLUGIN_VERSION', '4.3.6' );
define( 'SAILTHRU_PLUGIN_VERSION', '4.3.7' );
}

if ( ! defined( 'SAILTHRU_PLUGIN_PATH' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion widget.subscribe.php
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ function add_subscriber() {
}
} else {
$var_name = str_replace( 'custom_', '', $name_stripped );
$vars[ $var_name ] = sanitize_text_field( $_POST[ 'custom_' . $name_stripped ] );
$vars[ $var_name ] = sanitize_text_field( stripslashes ($_POST[ 'custom_' . $name_stripped ] ) );
}
}
}
Expand Down

0 comments on commit 9dc532d

Please sign in to comment.