MailChimp List Subscribe Form - Version 1.2.3

Version Description

  • Change mailchimpSF_where_am_i() to use plugins_url() in place of WP_PLUGIN_URL to take SSL into account when delivering assets (props John LeBlanc)
  • Update MCAPI wrapper to bring back PHP4 support (note: PHP 5.2 to be required starting with WordPress 3.2)
Download this release

Release Info

Developer crowdfavorite
Plugin Icon wp plugin MailChimp List Subscribe Form
Version 1.2.3
Comparing to
See all releases

Code changes from version 1.2.2 to 1.2.3

Files changed (2) hide show
  1. mailchimp.php +4 -4
  2. readme.txt +6 -2
mailchimp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: MailChimp
4
  Plugin URI: http://www.mailchimp.com/plugins/mailchimp-wordpress-plugin/
5
  Description: The MailChimp plugin allows you to quickly and easily add a signup form for your MailChimp list.
6
- Version: 1.2.2
7
  Author: MailChimp and Crowd Favorite
8
  Author URI: http://mailchimp.com/api/
9
  */
@@ -25,7 +25,7 @@ Author URI: http://mailchimp.com/api/
25
  */
26
 
27
  // Version constant for easy CSS refreshes
28
- define('MCSF_VER', '1.2.2');
29
 
30
  // What's our permission (capability) threshold
31
  define('MCSF_CAP_THRESHOLD', 'edit_plugins');
@@ -1120,11 +1120,11 @@ function mailchimpSF_where_am_i() {
1120
  $locations = array(
1121
  'plugins' => array(
1122
  'dir' => WP_PLUGIN_DIR,
1123
- 'url' => WP_PLUGIN_URL,
1124
  ),
1125
  'mu_plugins' => array(
1126
  'dir' => WPMU_PLUGIN_DIR,
1127
- 'url' => WPMU_PLUGIN_URL,
1128
  ),
1129
  'template' => array(
1130
  'dir' => trailingslashit(get_template_directory()).'plugins/',
3
  Plugin Name: MailChimp
4
  Plugin URI: http://www.mailchimp.com/plugins/mailchimp-wordpress-plugin/
5
  Description: The MailChimp plugin allows you to quickly and easily add a signup form for your MailChimp list.
6
+ Version: 1.2.3
7
  Author: MailChimp and Crowd Favorite
8
  Author URI: http://mailchimp.com/api/
9
  */
25
  */
26
 
27
  // Version constant for easy CSS refreshes
28
+ define('MCSF_VER', '1.2.3');
29
 
30
  // What's our permission (capability) threshold
31
  define('MCSF_CAP_THRESHOLD', 'edit_plugins');
1120
  $locations = array(
1121
  'plugins' => array(
1122
  'dir' => WP_PLUGIN_DIR,
1123
+ 'url' => plugins_url()
1124
  ),
1125
  'mu_plugins' => array(
1126
  'dir' => WPMU_PLUGIN_DIR,
1127
+ 'url' => plugins_url(),
1128
  ),
1129
  'template' => array(
1130
  'dir' => trailingslashit(get_template_directory()).'plugins/',
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: mc_jesse, crowdfavorite
3
  Tags: mailchimp, email, newsletter, signup, marketing, plugin, widget
4
  Requires at least: 2.8
5
- Tested up to: 3.0.4
6
- Stable tag: 1.2.2
7
 
8
  == Description ==
9
 
@@ -112,6 +112,10 @@ Maybe! Look in the /po/ directory in our plugin package and see if your language
112
 
113
  == Changelog ==
114
 
 
 
 
 
115
  = 1.2.2 =
116
  * Change MCAPI wrapper to use a more unique class name, v1.3 of the API, and a much lighter client library
117
 
2
  Contributors: mc_jesse, crowdfavorite
3
  Tags: mailchimp, email, newsletter, signup, marketing, plugin, widget
4
  Requires at least: 2.8
5
+ Tested up to: 3.1
6
+ Stable tag: 1.2.3
7
 
8
  == Description ==
9
 
112
 
113
  == Changelog ==
114
 
115
+ = 1.2.3 =
116
+ * Change mailchimpSF_where_am_i() to use plugins_url() in place of WP_PLUGIN_URL to take SSL into account when delivering assets (props John LeBlanc)
117
+ * Update MCAPI wrapper to bring back PHP4 support (note: PHP 5.2 to be required starting with WordPress 3.2)
118
+
119
  = 1.2.2 =
120
  * Change MCAPI wrapper to use a more unique class name, v1.3 of the API, and a much lighter client library
121