MailChimp for WordPress - Version 4.0.9

Version Description

Download this release

Release Info

Developer DvanKooten
Plugin Icon 128x128 MailChimp for WordPress
Version 4.0.9
Comparing to
See all releases

Code changes from version 4.0.8 to 4.0.9

CHANGELOG.md CHANGED
@@ -1,6 +1,14 @@
1
  Changelog
2
  =========
3
 
 
 
 
 
 
 
 
 
4
  #### 4.0.8 - November 23, 2016
5
 
6
  **Improvements**
1
  Changelog
2
  =========
3
 
4
+
5
+ #### 4.0.9 - November 23, 2016
6
+
7
+ **Fixes**
8
+
9
+ - Issue with escaped HTML when using form tags introduced by previous update.
10
+
11
+
12
  #### 4.0.8 - November 23, 2016
13
 
14
  **Improvements**
includes/class-dynamic-content-tags.php CHANGED
@@ -106,13 +106,11 @@ class MC4WP_Dynamic_Content_Tags {
106
 
107
  /**
108
  * @param string $string The string containing dynamic content tags.
109
- * @param string $escape_mode Escape mode for the replacement value.
110
  * @return string
111
  */
112
  public function replace( $string, $escape_mode = '' ) {
113
- if( ! empty( $escape_mode ) ) {
114
- $this->escape_mode = $escape_mode;
115
- }
116
 
117
  // replace strings like this: {tagname attr="value"}
118
  $string = preg_replace_callback( '/\{(\w+)(\ +(?:(?!\{)[^}\n])+)*\}/', array( $this, 'replace_tag' ), $string );
106
 
107
  /**
108
  * @param string $string The string containing dynamic content tags.
109
+ * @param string $escape_mode Escape mode for the replacement value. Leave empty for no escaping.
110
  * @return string
111
  */
112
  public function replace( $string, $escape_mode = '' ) {
113
+ $this->escape_mode = $escape_mode;
 
 
114
 
115
  // replace strings like this: {tagname attr="value"}
116
  $string = preg_replace_callback( '/\{(\w+)(\ +(?:(?!\{)[^}\n])+)*\}/', array( $this, 'replace_tag' ), $string );
mailchimp-for-wp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: MailChimp for WordPress
4
  Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
5
  Description: MailChimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
6
- Version: 4.0.8
7
  Author: ibericode
8
  Author URI: https://ibericode.com/
9
  Text Domain: mailchimp-for-wp
@@ -47,7 +47,7 @@ function _mc4wp_load_plugin() {
47
  }
48
 
49
  // bootstrap the core plugin
50
- define( 'MC4WP_VERSION', '4.0.8' );
51
  define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
52
  define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
53
  define( 'MC4WP_PLUGIN_FILE', __FILE__ );
3
  Plugin Name: MailChimp for WordPress
4
  Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
5
  Description: MailChimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
6
+ Version: 4.0.9
7
  Author: ibericode
8
  Author URI: https://ibericode.com/
9
  Text Domain: mailchimp-for-wp
47
  }
48
 
49
  // bootstrap the core plugin
50
+ define( 'MC4WP_VERSION', '4.0.9' );
51
  define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
52
  define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
53
  define( 'MC4WP_PLUGIN_FILE', __FILE__ );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-f
4
  Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
5
  Requires at least: 4.1
6
  Tested up to: 4.6.1
7
- Stable tag: 4.0.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -190,6 +190,14 @@ MailChimp for WordPress is being developed on GitHub. If you want to collaborate
190
  == Changelog ==
191
 
192
 
 
 
 
 
 
 
 
 
193
  #### 4.0.8 - November 23, 2016
194
 
195
  **Improvements**
4
  Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
5
  Requires at least: 4.1
6
  Tested up to: 4.6.1
7
+ Stable tag: 4.0.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
190
  == Changelog ==
191
 
192
 
193
+
194
+ #### 4.0.9 - November 23, 2016
195
+
196
+ **Fixes**
197
+
198
+ - Issue with escaped HTML when using form tags introduced by previous update.
199
+
200
+
201
  #### 4.0.8 - November 23, 2016
202
 
203
  **Improvements**
vendor/autoload_52.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
- return ComposerAutoloaderInit71204dba1008f5756389fc0275fd9395::getLoader();
4
 
5
  require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
6
 
7
+ return ComposerAutoloaderInitd675018957fad5ac3bfc1e430d5e751a::getLoader();
vendor/composer/autoload_real_52.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real_52.php generated by xrstf/composer-php52
4
 
5
- class ComposerAutoloaderInit71204dba1008f5756389fc0275fd9395 {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit71204dba1008f5756389fc0275fd9395 {
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInit71204dba1008f5756389fc0275fd9395', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInit71204dba1008f5756389fc0275fd9395', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);
2
 
3
  // autoload_real_52.php generated by xrstf/composer-php52
4
 
5
+ class ComposerAutoloaderInitd675018957fad5ac3bfc1e430d5e751a {
6
  private static $loader;
7
 
8
  public static function loadClassLoader($class) {
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInitd675018957fad5ac3bfc1e430d5e751a', 'loadClassLoader'), true /*, true */);
23
  self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInitd675018957fad5ac3bfc1e430d5e751a', 'loadClassLoader'));
25
 
26
  $vendorDir = dirname(dirname(__FILE__));
27
  $baseDir = dirname($vendorDir);