Official MailerLite Sign Up Forms - Version 1.4.3

Version Description

  • Fix - removed use of deprecated php method
Download this release

Release Info

Developer mailerlite
Plugin Icon 128x128 Official MailerLite Sign Up Forms
Version 1.4.3
Comparing to
See all releases

Code changes from version 1.4.2 to 1.4.3

Files changed (3) hide show
  1. include/mailerlite-admin.php +3 -1
  2. mailerlite.php +2 -2
  3. readme.txt +4 -1
include/mailerlite-admin.php CHANGED
@@ -231,7 +231,9 @@ class MailerLite_Admin {
231
  if ( $form->type == MailerLite_Form::TYPE_CUSTOM ) {
232
  add_filter(
233
  'wp_default_editor',
234
- create_function( '', 'return "tinymce";' )
 
 
235
  );
236
 
237
  $ML_Groups = new MailerLite_Forms_Groups( $api_key );
231
  if ( $form->type == MailerLite_Form::TYPE_CUSTOM ) {
232
  add_filter(
233
  'wp_default_editor',
234
+ function() {
235
+ return 'tinymce';
236
+ }
237
  );
238
 
239
  $ML_Groups = new MailerLite_Forms_Groups( $api_key );
mailerlite.php CHANGED
@@ -3,7 +3,7 @@
3
  /**
4
  * Plugin Name: Official MailerLite Sign Up Forms
5
  * Description: Official MailerLite Sign Up Forms plugin for WordPress. Ability to embed MailerLite webforms and create custom ones just with few clicks.
6
- * Version: 1.4.2
7
  * Author: MailerGroup
8
  * Author URI: https://www.mailerlite.com
9
  * License: GPLv2 or later
@@ -29,7 +29,7 @@
29
  define( 'MAILERLITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
30
  define( 'MAILERLITE_PLUGIN_URL', plugins_url( '', __FILE__ ) );
31
 
32
- define( 'MAILERLITE_VERSION', '1.4.2' );
33
 
34
  define( 'MAILERLITE_PHP_VERSION', '5.6.0' );
35
  define( 'MAILERLITE_WP_VERSION', '3.0.1' );
3
  /**
4
  * Plugin Name: Official MailerLite Sign Up Forms
5
  * Description: Official MailerLite Sign Up Forms plugin for WordPress. Ability to embed MailerLite webforms and create custom ones just with few clicks.
6
+ * Version: 1.4.3
7
  * Author: MailerGroup
8
  * Author URI: https://www.mailerlite.com
9
  * License: GPLv2 or later
29
  define( 'MAILERLITE_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
30
  define( 'MAILERLITE_PLUGIN_URL', plugins_url( '', __FILE__ ) );
31
 
32
+ define( 'MAILERLITE_VERSION', '1.4.3' );
33
 
34
  define( 'MAILERLITE_PHP_VERSION', '5.6.0' );
35
  define( 'MAILERLITE_WP_VERSION', '3.0.1' );
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: mailerlite, newsletter, subscribe, form, webform
5
  Requires at least: 3.0.1
6
  Tested up to: 5.3.2
7
  Requires PHP: 5.6.0
8
- Stable tag: 1.4.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -130,6 +130,9 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
130
 
131
  == Changelog ==
132
 
 
 
 
133
  = 1.4.2 =
134
  * Fix - Styles on form description bug
135
  * Update - Added a Load more button for groups on the creation stage phase.
5
  Requires at least: 3.0.1
6
  Tested up to: 5.3.2
7
  Requires PHP: 5.6.0
8
+ Stable tag: 1.4.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
130
 
131
  == Changelog ==
132
 
133
+ = 1.4.3 =
134
+ * Fix - removed use of deprecated php method
135
+
136
  = 1.4.2 =
137
  * Fix - Styles on form description bug
138
  * Update - Added a Load more button for groups on the creation stage phase.