Version Description
- Fix - Gutenberg script enqueue called action method was non-static
Download this release
Release Info
Developer | mailerlite |
Plugin | Official MailerLite Sign Up Forms |
Version | 1.4.6 |
Comparing to | |
See all releases |
Code changes from version 1.4.5 to 1.4.6
- include/mailerlite-gutenberg.php +1 -1
- mailerlite.php +2 -2
- readme.txt +4 -1
include/mailerlite-gutenberg.php
CHANGED
@@ -51,7 +51,7 @@ class MailerLite_Gutenberg {
|
|
51 |
}
|
52 |
}
|
53 |
|
54 |
-
public function enqueue_gutenberg_scripts()
|
55 |
{
|
56 |
wp_localize_script('mailerlite-form-block', 'mailerlite_vars', [
|
57 |
'ml_nonce' => wp_create_nonce('mailerlite_gutenberg'),
|
51 |
}
|
52 |
}
|
53 |
|
54 |
+
public static function enqueue_gutenberg_scripts()
|
55 |
{
|
56 |
wp_localize_script('mailerlite-form-block', 'mailerlite_vars', [
|
57 |
'ml_nonce' => wp_create_nonce('mailerlite_gutenberg'),
|
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.
|
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.
|
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.6
|
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.6' );
|
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.4.1
|
7 |
Requires PHP: 5.6.0
|
8 |
-
Stable tag: 1.4.
|
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.5 =
|
134 |
* Fix - Additional security for AJAX calls
|
135 |
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 5.4.1
|
7 |
Requires PHP: 5.6.0
|
8 |
+
Stable tag: 1.4.6
|
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.6 =
|
134 |
+
* Fix - Gutenberg script enqueue called action method was non-static
|
135 |
+
|
136 |
= 1.4.5 =
|
137 |
* Fix - Additional security for AJAX calls
|
138 |
|