Version Description
- Stop using deprecated widget constructor
Download this release
Release Info
Developer | MailChimp |
Plugin | MailChimp List Subscribe Form |
Version | 1.4.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3 to 1.4.4
- mailchimp.php +2 -2
- mailchimp_widget.php +1 -1
- readme.txt +5 -2
mailchimp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MailChimp
|
4 |
Plugin URI: https://connect.mailchimp.com/integrations/wordpress-list-subscribe-form/
|
5 |
Description: The MailChimp plugin allows you to quickly and easily add a signup form for your MailChimp list.
|
6 |
-
Version: 1.4.
|
7 |
Author: MailChimp
|
8 |
Author URI: http://mailchimp.com/
|
9 |
*/
|
@@ -25,7 +25,7 @@ Author URI: http://mailchimp.com/
|
|
25 |
*/
|
26 |
|
27 |
// Version constant for easy CSS refreshes
|
28 |
-
define('MCSF_VER', '1.4.
|
29 |
|
30 |
// What's our permission (capability) threshold
|
31 |
define('MCSF_CAP_THRESHOLD', 'manage_options');
|
3 |
Plugin Name: MailChimp
|
4 |
Plugin URI: https://connect.mailchimp.com/integrations/wordpress-list-subscribe-form/
|
5 |
Description: The MailChimp plugin allows you to quickly and easily add a signup form for your MailChimp list.
|
6 |
+
Version: 1.4.4
|
7 |
Author: MailChimp
|
8 |
Author URI: http://mailchimp.com/
|
9 |
*/
|
25 |
*/
|
26 |
|
27 |
// Version constant for easy CSS refreshes
|
28 |
+
define('MCSF_VER', '1.4.4');
|
29 |
|
30 |
// What's our permission (capability) threshold
|
31 |
define('MCSF_CAP_THRESHOLD', 'manage_options');
|
mailchimp_widget.php
CHANGED
@@ -484,7 +484,7 @@ class mailchimpSF_Widget extends WP_Widget {
|
|
484 |
$widget_ops = array(
|
485 |
'description' => __('Displays a MailChimp Subscribe box', 'mailchimp_i18n')
|
486 |
);
|
487 |
-
|
488 |
}
|
489 |
function widget( $args, $instance ) {
|
490 |
if (!is_array($instance)) {
|
484 |
$widget_ops = array(
|
485 |
'description' => __('Displays a MailChimp Subscribe box', 'mailchimp_i18n')
|
486 |
);
|
487 |
+
parent::__construct('mailchimpSF_widget', __('MailChimp Widget', 'mailchimp_i18n'), $widget_ops);
|
488 |
}
|
489 |
function widget( $args, $instance ) {
|
490 |
if (!is_array($instance)) {
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: mailchimp
|
3 |
Tags: mailchimp, email, newsletter, signup, marketing, plugin, widget
|
4 |
Requires at least: 2.8
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.4.
|
7 |
|
8 |
== Description ==
|
9 |
|
@@ -169,6 +169,9 @@ Added support for multiple interest groups, field formatting based on type and d
|
|
169 |
|
170 |
== Changelog ==
|
171 |
|
|
|
|
|
|
|
172 |
= 1.4.3 =
|
173 |
* Fix issue with improperly escaped text fields
|
174 |
* Fix issue with malformed update profile link
|
2 |
Contributors: mailchimp
|
3 |
Tags: mailchimp, email, newsletter, signup, marketing, plugin, widget
|
4 |
Requires at least: 2.8
|
5 |
+
Tested up to: 4.4.2
|
6 |
+
Stable tag: 1.4.4
|
7 |
|
8 |
== Description ==
|
9 |
|
169 |
|
170 |
== Changelog ==
|
171 |
|
172 |
+
= 1.4.4 =
|
173 |
+
* Stop using deprecated widget constructor
|
174 |
+
|
175 |
= 1.4.3 =
|
176 |
* Fix issue with improperly escaped text fields
|
177 |
* Fix issue with malformed update profile link
|