Skip to content

Commit fd5b5ca

Browse files
Version bump to v2.3.2
1 parent 1cfba8c commit fd5b5ca

File tree

5 files changed

+25
-13
lines changed

5 files changed

+25
-13
lines changed

mailchimp-for-wp.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: MailChimp for WordPress Lite
44
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm-medium=mailchimp-for-wp&utm_campaign=plugin-page
55
Description: Lite version of MailChimp for WordPress. Adds various sign-up methods to your website.
6-
Version: 2.3.1
6+
Version: 2.3.2
77
Author: Ibericode
88
Author URI: http://ibericode.com/
99
Text Domain: mailchimp-for-wp
@@ -48,7 +48,7 @@ function mc4wp_load_plugin() {
4848
}
4949

5050
// bootstrap the lite plugin
51-
define( 'MC4WP_LITE_VERSION', '2.3.1' );
51+
define( 'MC4WP_LITE_VERSION', '2.3.2' );
5252
define( 'MC4WP_LITE_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
5353
define( 'MC4WP_LITE_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
5454
define( 'MC4WP_LITE_PLUGIN_FILE', __FILE__ );

readme.txt

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm-medium=mailchimp-f
44
Tags: mailchimp,newsletter,sign-up,contact form 7,woocommerce,buddypress,widget,form
55
Requires at least: 3.7
66
Tested up to: 4.2.1
7-
Stable tag: 2.3.1
7+
Stable tag: 2.3.2
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -266,6 +266,18 @@ Development of the plugin happens on GitHub: [dannyvankooten/mailchimp-for-wordp
266266

267267
== Changelog ==
268268

269+
= 2.3.2 - May 12, 2015 =
270+
271+
**Fixes**
272+
273+
- Groupings not being sent to MailChimp
274+
- Get correct IP address when using proxy like Cloudflare or Sucuri WAF.
275+
- Issue when using more than one `{data_xx}` replacement
276+
277+
**Improvements**
278+
279+
- IE8 compatibility for honeypot fallback script.
280+
269281
= 2.3.1 - May 6, 2015 =
270282

271283
**Fixes**
@@ -816,5 +828,5 @@ Minor improvements and additions for compatibility with the [MailChimp Sync plug
816828

817829
== Upgrade Notice ==
818830

819-
= 2.3.1 =
820-
Handle unsubscribe calls from your forms and use dynamic variables everywhere. Updated translations.
831+
= 2.3.2 =
832+
Fixes issue with GROUPINGS not being sent to MailChimp.

vendor/autoload_52.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
66

7-
return ComposerAutoloaderInitc67a975ec6c97b622b06201a3818fb23::getLoader();
7+
return ComposerAutoloaderInitbd14c620da69441a5dcbd29acaacca9d::getLoader();

vendor/composer/ClassLoader.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ private function findFileWithExtension($class, $ext)
351351
foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
352352
if (0 === strpos($class, $prefix)) {
353353
foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
354-
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
354+
if (is_file($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
355355
return $file;
356356
}
357357
}
@@ -361,7 +361,7 @@ private function findFileWithExtension($class, $ext)
361361

362362
// PSR-4 fallback dirs
363363
foreach ($this->fallbackDirsPsr4 as $dir) {
364-
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
364+
if (is_file($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
365365
return $file;
366366
}
367367
}
@@ -380,7 +380,7 @@ private function findFileWithExtension($class, $ext)
380380
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
381381
if (0 === strpos($class, $prefix)) {
382382
foreach ($dirs as $dir) {
383-
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
383+
if (is_file($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
384384
return $file;
385385
}
386386
}
@@ -390,7 +390,7 @@ private function findFileWithExtension($class, $ext)
390390

391391
// PSR-0 fallback dirs
392392
foreach ($this->fallbackDirsPsr0 as $dir) {
393-
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
393+
if (is_file($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
394394
return $file;
395395
}
396396
}

vendor/composer/autoload_real_52.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real_52.php generated by xrstf/composer-php52
44

5-
class ComposerAutoloaderInitc67a975ec6c97b622b06201a3818fb23 {
5+
class ComposerAutoloaderInitbd14c620da69441a5dcbd29acaacca9d {
66
private static $loader;
77

88
public static function loadClassLoader($class) {
@@ -19,9 +19,9 @@ public static function getLoader() {
1919
return self::$loader;
2020
}
2121

22-
spl_autoload_register(array('ComposerAutoloaderInitc67a975ec6c97b622b06201a3818fb23', 'loadClassLoader'), true /*, true */);
22+
spl_autoload_register(array('ComposerAutoloaderInitbd14c620da69441a5dcbd29acaacca9d', 'loadClassLoader'), true /*, true */);
2323
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
24-
spl_autoload_unregister(array('ComposerAutoloaderInitc67a975ec6c97b622b06201a3818fb23', 'loadClassLoader'));
24+
spl_autoload_unregister(array('ComposerAutoloaderInitbd14c620da69441a5dcbd29acaacca9d', 'loadClassLoader'));
2525

2626
$vendorDir = dirname(dirname(__FILE__));
2727
$baseDir = dirname($vendorDir);

0 commit comments

Comments
 (0)