Easy Forms for MailChimp - Version 5.0.8

Version Description

  • September 23, 2014 =

Fixes * Band-aid fix for the -1 response returned from ajax.php

Download this release

Release Info

Developer eherman24
Plugin Icon 128x128 Easy Forms for MailChimp
Version 5.0.8
Comparing to
See all releases

Code changes from version 5.0.7 to 5.0.8

process/ajax.php CHANGED
@@ -15,6 +15,18 @@ default:
15
  echo '-1';
16
  break;
17
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  case 'update_options':
19
  $action = $yksemeBase->updateOptions($_POST);
20
  if($action)
15
  echo '-1';
16
  break;
17
 
18
+ // temporary solution to the issue - v5.0.8 repair
19
+ // should be properly fixed in v5.1
20
+ case 'frontend_submit_form':
21
+ $action = $yksemeBase->addUserToMailchimp($_POST);
22
+ if($action == "done")
23
+ {
24
+ echo '1';
25
+ } else {
26
+ echo $action;
27
+ }
28
+ break;
29
+
30
  case 'update_options':
31
  $action = $yksemeBase->updateOptions($_POST);
32
  if($action)
readme.md CHANGED
@@ -417,6 +417,10 @@ These functions should be used in conjunction with the `yikes_mc_get_form_data`
417
 
418
  Changes
419
  ===========
 
 
 
 
420
  ### 5.0.7 - September 19, 2014
421
  * Security Vulnerability patched - props @g0blinResearch for privately disclosing the issue
422
 
417
 
418
  Changes
419
  ===========
420
+
421
+ ### 5.0.8 - September 23, 2014
422
+ * Band-aid fix for the -1 response returned from ajax.php
423
+
424
  ### 5.0.7 - September 19, 2014
425
  * Security Vulnerability patched - props @g0blinResearch for privately disclosing the issue
426
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://yikesinc.com
4
  Tags: mailchimp, marketing, email, mailing lists, newsletter, sign up, forms, sign up form
5
  Requires at least: 3.0
6
  Tested up to: 4.0
7
- Stable tag: 5.0.7
8
  License: GPLv2 or later
9
 
10
  Easy MailChimp Forms allows you to painlessly add MailChimp sign up forms to your WordPress site and track user activity with interactive reports.
@@ -456,6 +456,11 @@ These functions should be used in conjunction with the `yikes_mc_get_form_data`
456
 
457
  == Changelog ==
458
 
 
 
 
 
 
459
  = 5.0.7 - September 19, 2014 =
460
 
461
  **Fixes**
@@ -638,6 +643,11 @@ These functions should be used in conjunction with the `yikes_mc_get_form_data`
638
 
639
  == Upgrade Notice ==
640
 
 
 
 
 
 
641
  = 5.0.7 - September 19, 2014 =
642
 
643
  **Fixes**
4
  Tags: mailchimp, marketing, email, mailing lists, newsletter, sign up, forms, sign up form
5
  Requires at least: 3.0
6
  Tested up to: 4.0
7
+ Stable tag: 5.0.8
8
  License: GPLv2 or later
9
 
10
  Easy MailChimp Forms allows you to painlessly add MailChimp sign up forms to your WordPress site and track user activity with interactive reports.
456
 
457
  == Changelog ==
458
 
459
+ = 5.0.8 - September 23, 2014 =
460
+
461
+ **Fixes**
462
+ * Band-aid fix for the -1 response returned from ajax.php
463
+
464
  = 5.0.7 - September 19, 2014 =
465
 
466
  **Fixes**
643
 
644
  == Upgrade Notice ==
645
 
646
+ = 5.0.8 - September 23, 2014 =
647
+
648
+ **Fixes**
649
+ * Band-aid fix for the -1 response returned from ajax.php
650
+
651
  = 5.0.7 - September 19, 2014 =
652
 
653
  **Fixes**
yikes-inc-easy-mailchimp-extender.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Easy MailChimp Forms
5
  Plugin URI: http://www.yikesinc.com/services/yikes-inc-easy-mailchimp-extender/
6
  Description: Mailchimp integration in the form of a shortcode, php snippet or widget. Now track account status, campaign stats, view subscribers and so much more!
7
- Version: 5.0.7
8
  Author: YIKES Inc
9
  Author URI: http://yikesinc.com
10
  License: GPL2
@@ -30,7 +30,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30
 
31
  /** Configuration **/
32
  if(!defined('YKSEME_DEBUG')) define('YKSEME_DEBUG', false);
33
- if(!defined('YKSEME_VERSION_CURRENT')) define('YKSEME_VERSION_CURRENT', '5.0.7');
34
  if(!defined('YKSEME_REQ_PHP')) define('YKSEME_REQ_PHP', '5.0');
35
  if(!defined('YKSEME_AUTHOR')) define('YKSEME_AUTHOR', 'YIKES Inc');
36
  if(!defined('YKSEME_SITE')) define('YKSEME_SITE', site_url().'/');
4
  Plugin Name: Easy MailChimp Forms
5
  Plugin URI: http://www.yikesinc.com/services/yikes-inc-easy-mailchimp-extender/
6
  Description: Mailchimp integration in the form of a shortcode, php snippet or widget. Now track account status, campaign stats, view subscribers and so much more!
7
+ Version: 5.0.8
8
  Author: YIKES Inc
9
  Author URI: http://yikesinc.com
10
  License: GPL2
30
 
31
  /** Configuration **/
32
  if(!defined('YKSEME_DEBUG')) define('YKSEME_DEBUG', false);
33
+ if(!defined('YKSEME_VERSION_CURRENT')) define('YKSEME_VERSION_CURRENT', '5.0.8');
34
  if(!defined('YKSEME_REQ_PHP')) define('YKSEME_REQ_PHP', '5.0');
35
  if(!defined('YKSEME_AUTHOR')) define('YKSEME_AUTHOR', 'YIKES Inc');
36
  if(!defined('YKSEME_SITE')) define('YKSEME_SITE', site_url().'/');