MailChimp for WordPress - Version 3.0.12

Version Description

Download this release

Release Info

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

Code changes from version 3.0.11 to 3.0.12

CHANGELOG.md CHANGED
@@ -1,11 +1,13 @@
1
  Changelog
2
  =========
3
 
4
- #### 3.0.11 - January 14, 2015
5
 
6
  **Fixes**
7
 
8
- - Incorrect hooks being fired for successful and unsuccessful form sign-ups.
 
 
9
 
10
  **Improvements**
11
 
1
  Changelog
2
  =========
3
 
4
+ #### 3.0.12 - January 15, 2015
5
 
6
  **Fixes**
7
 
8
+ - Incorrect hooks being fired for successful and unsuccessful form sign-ups (which also broke the success redirect).
9
+
10
+ #### 3.0.11 - January 14, 2015
11
 
12
  **Improvements**
13
 
includes/forms/class-form-listener.php CHANGED
@@ -149,7 +149,7 @@ class MC4WP_Form_Listener {
149
  */
150
  public function respond( MC4WP_Form $form ) {
151
 
152
- $success = $form->has_errors();
153
 
154
  if( $success ) {
155
 
149
  */
150
  public function respond( MC4WP_Form $form ) {
151
 
152
+ $success = ! $form->has_errors();
153
 
154
  if( $success ) {
155
 
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: 3.0.11
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', '3.0.11' );
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: 3.0.12
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', '3.0.12' );
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: 3.7
6
  Tested up to: 4.4
7
- Stable tag: 3.0.11
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -175,11 +175,13 @@ MailChimp for WordPress is being developed on GitHub. If you want to collaborate
175
  == Changelog ==
176
 
177
 
178
- #### 3.0.11 - January 14, 2015
179
 
180
  **Fixes**
181
 
182
- - Incorrect hooks being fired for successful and unsuccessful form sign-ups.
 
 
183
 
184
  **Improvements**
185
 
4
  Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
5
  Requires at least: 3.7
6
  Tested up to: 4.4
7
+ Stable tag: 3.0.12
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
175
  == Changelog ==
176
 
177
 
178
+ #### 3.0.12 - January 15, 2015
179
 
180
  **Fixes**
181
 
182
+ - Incorrect hooks being fired for successful and unsuccessful form sign-ups (which also broke the success redirect).
183
+
184
+ #### 3.0.11 - January 14, 2015
185
 
186
  **Improvements**
187