Easy Forms for MailChimp - Version 6.3.12

Version Description

Download this release

Release Info

Developer yikesitskevin
Plugin Icon 128x128 Easy Forms for MailChimp
Version 6.3.12
Comparing to
See all releases

Code changes from version 6.3.11 to 6.3.12

admin/partials/welcome-page/welcome.php CHANGED
@@ -1,4 +1,5 @@
1
  <?php
 
2
  /**
3
  * Navigation tabs
4
  *
@@ -27,10 +28,10 @@
27
  }
28
 
29
  function yikes_easy_mc_welcome_body() {
30
- $section = isset( $_GET['section'] ) ? $_GET['section'] : 'getting-started';
31
- if( isset( $section ) ) {
32
- include_once( plugin_dir_path( dirname( __FILE__ ) ) . '/welcome-page/welcome-sections/' . $section . '-section.php' );
33
- }
34
  }
35
 
36
  // Display custom PHP warning if <= 5.3
1
  <?php
2
+
3
  /**
4
  * Navigation tabs
5
  *
28
  }
29
 
30
  function yikes_easy_mc_welcome_body() {
31
+
32
+ $allowed_sections = array( 'add-ons', 'getting-started', 'knowledge-base', 'whats-new' );
33
+ $section = isset( $_GET['section'] ) && in_array( $_GET['section'], $allowed_sections ) ? $_GET['section'] : 'getting-started';
34
+ include_once( plugin_dir_path( dirname( __FILE__ ) ) . '/welcome-page/welcome-sections/' . $section . '-section.php' );
35
  }
36
 
37
  // Display custom PHP warning if <= 5.3
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://yikesplugins.com/?utm_source=wp_plugin_repo&utm_medium=dona
4
  Tags: MailChimp, MailChimp forms, MailChimp lists, opt-in forms, sign up form, MailChimp, email, forms, mailing lists, marketing, newsletter, sign up
5
  Requires at least: 4.0
6
  Tested up to: 4.7.3
7
- Stable tag: 6.3.11
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -250,6 +250,9 @@ Below you'll find a complete list of the hooks and filters available in Easy For
250
 
251
  == Changelog ==
252
 
 
 
 
253
  = Easy Forms for MailChimp 6.3.11 - March 23rd, 2017 =
254
  * Optimized our query that fetches all posts/pages/CPTs - we now fetch only the IDs - this should prevent issues such as memory overflow or timeout
255
 
4
  Tags: MailChimp, MailChimp forms, MailChimp lists, opt-in forms, sign up form, MailChimp, email, forms, mailing lists, marketing, newsletter, sign up
5
  Requires at least: 4.0
6
  Tested up to: 4.7.3
7
+ Stable tag: 6.3.12
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
250
 
251
  == Changelog ==
252
 
253
+ = Easy Forms for MailChimp 6.3.12 - April 6th, 2017 =
254
+ * Security vulnerability patched - Discovered with DefenseCode ThunderScan Source Code Security Analyzer by Neven Biruski
255
+
256
  = Easy Forms for MailChimp 6.3.11 - March 23rd, 2017 =
257
  * Optimized our query that fetches all posts/pages/CPTs - we now fetch only the IDs - this should prevent issues such as memory overflow or timeout
258
 
yikes-inc-easy-mailchimp-extender.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Easy Forms for MailChimp
4
  * Plugin URI: https://yikesplugins.com/plugin/easy-forms-for-mailchimp/
5
  * Description: The ultimate MailChimp WordPress plugin. Easily build <strong>unlimited forms for your MailChimp lists</strong>, add them to your site and track subscriber activity. To get started, go to the settings page and enter your <a href="https://yikesplugins.com/support/knowledge-base/finding-your-mailchimp-api-key/" target="_blank">MailChimp API key</a>.
6
- * Version: 6.3.11
7
  * Author: YIKES, Inc.
8
  * Author URI: https://www.yikesplugins.com/
9
  * License: GPL-3.0+
@@ -42,7 +42,7 @@ if ( ! defined( 'WPINC' ) ) {
42
  * @since 6.1.3
43
  */
44
  if ( ! defined( 'YIKES_MC_VERSION' ) ) {
45
- define( 'YIKES_MC_VERSION' , '6.3.11' );
46
  }
47
 
48
  /**
3
  * Plugin Name: Easy Forms for MailChimp
4
  * Plugin URI: https://yikesplugins.com/plugin/easy-forms-for-mailchimp/
5
  * Description: The ultimate MailChimp WordPress plugin. Easily build <strong>unlimited forms for your MailChimp lists</strong>, add them to your site and track subscriber activity. To get started, go to the settings page and enter your <a href="https://yikesplugins.com/support/knowledge-base/finding-your-mailchimp-api-key/" target="_blank">MailChimp API key</a>.
6
+ * Version: 6.3.12
7
  * Author: YIKES, Inc.
8
  * Author URI: https://www.yikesplugins.com/
9
  * License: GPL-3.0+
42
  * @since 6.1.3
43
  */
44
  if ( ! defined( 'YIKES_MC_VERSION' ) ) {
45
+ define( 'YIKES_MC_VERSION' , '6.3.12' );
46
  }
47
 
48
  /**