Official MailerLite Sign Up Forms - Version 1.0.16

Version Description

  • links to https, db update charset
Download this release

Release Info

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

Code changes from version 1.0.15 to 1.0.16

include/mailerlite-form.php CHANGED
@@ -159,7 +159,7 @@ class MailerLite_Form
159
  ) {
160
  wp_register_script(
161
  'jquery-validation-plugin',
162
- 'http://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.0/jquery.validate.min.js',
163
  array('jquery')
164
  );
165
  } else if (!wp_script_is('jquery-validation-plugin')
@@ -169,7 +169,7 @@ class MailerLite_Form
169
  ) {
170
  wp_register_script(
171
  'jquery-validation-plugin',
172
- 'http://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.0/jquery.validate.min.js',
173
  array('google-hosted-jquery')
174
  );
175
  }
159
  ) {
160
  wp_register_script(
161
  'jquery-validation-plugin',
162
+ 'https://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.0/jquery.validate.min.js',
163
  array('jquery')
164
  );
165
  } else if (!wp_script_is('jquery-validation-plugin')
169
  ) {
170
  wp_register_script(
171
  'jquery-validation-plugin',
172
+ 'https://ajax.aspnetcdn.com/ajax/jquery.validate/1.13.0/jquery.validate.min.js',
173
  array('google-hosted-jquery')
174
  );
175
  }
mailerlite.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Official MailerLite Sign Up Forms
5
  * Description: Official MailerLite Sign Up Forms plugin for WordPress. Ability
6
  * to embed MailerLite webforms and create custom ones just with few clicks.
7
- * Version: 1.0.15
8
  * Author: MailerGroup
9
  * Author URI: https://www.mailerlite.com
10
  * License: GPLv2 or later
@@ -28,7 +28,7 @@
28
  define('MAILERLITE_PLUGIN_DIR', plugin_dir_path(__FILE__));
29
  define('MAILERLITE_PLUGIN_URL', plugins_url('', __FILE__));
30
 
31
- define('MAILERLITE_VERSION', '1.0.15');
32
 
33
  function mailerlite_load_plugin_textdomain()
34
  {
@@ -62,6 +62,15 @@ function mailerlite_install()
62
 
63
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
64
  dbDelta($sql);
 
 
 
 
 
 
 
 
 
65
  }
66
 
67
  register_activation_hook(__FILE__, 'mailerlite_install');
4
  * Plugin Name: Official MailerLite Sign Up Forms
5
  * Description: Official MailerLite Sign Up Forms plugin for WordPress. Ability
6
  * to embed MailerLite webforms and create custom ones just with few clicks.
7
+ * Version: 1.0.16
8
  * Author: MailerGroup
9
  * Author URI: https://www.mailerlite.com
10
  * License: GPLv2 or later
28
  define('MAILERLITE_PLUGIN_DIR', plugin_dir_path(__FILE__));
29
  define('MAILERLITE_PLUGIN_URL', plugins_url('', __FILE__));
30
 
31
+ define('MAILERLITE_VERSION', '1.0.16');
32
 
33
  function mailerlite_load_plugin_textdomain()
34
  {
62
 
63
  require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
64
  dbDelta($sql);
65
+
66
+ $sql = "ALTER TABLE " . $table_name . " DEFAULT CHARACTER SET utf8 COLLATE " . $charset_collate;
67
+ dbDelta($sql);
68
+
69
+ $sql = "ALTER TABLE " . $table_name . " CHANGE `name` `name` TINYTEXT CHARACTER SET utf8 COLLATE " . $charset_collate;
70
+ dbDelta($sql);
71
+
72
+ $sql = "ALTER TABLE " . $table_name . " CHANGE `data` `data` TINYTEXT CHARACTER SET utf8 COLLATE " . $charset_collate;
73
+ dbDelta($sql);
74
  }
75
 
76
  register_activation_hook(__FILE__, 'mailerlite_install');
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.mailerlite.com/
4
  Tags: mailerlite, newsletter, subscribe, form, webform
5
  Requires at least: 3.0.1
6
  Tested up to: 4.3.1
7
- Stable tag: 1.0.15
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -127,6 +127,8 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
127
 
128
  == Changelog ==
129
 
 
 
130
  = 1.0.15 =
131
  * Updated links to knowledge base about api key, changed db charset for table - utf8_bin
132
  = 1.0.14 =
@@ -162,7 +164,9 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
162
 
163
  == Upgrade Notice ==
164
 
165
- = 1.0.14 =
 
 
166
  * Updated links to knowledge base about api key, changed db charset for table - utf8_bin
167
  = 1.0.14 =
168
  * Removed new lines for some cases
4
  Tags: mailerlite, newsletter, subscribe, form, webform
5
  Requires at least: 3.0.1
6
  Tested up to: 4.3.1
7
+ Stable tag: 1.0.16
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
127
 
128
  == Changelog ==
129
 
130
+ = 1.0.16 =
131
+ * links to https, db update charset
132
  = 1.0.15 =
133
  * Updated links to knowledge base about api key, changed db charset for table - utf8_bin
134
  = 1.0.14 =
164
 
165
  == Upgrade Notice ==
166
 
167
+ = 1.0.16 =
168
+ * links to https, db update charset
169
+ = 1.0.15 =
170
  * Updated links to knowledge base about api key, changed db charset for table - utf8_bin
171
  = 1.0.14 =
172
  * Removed new lines for some cases
trunk/mailerlite.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Official MailerLite Sign Up Forms
5
  * Description: Official MailerLite Sign Up Forms plugin for WordPress. Ability
6
  * to embed MailerLite webforms and create custom ones just with few clicks.
7
- * Version: 1.0.15
8
  * Author: MailerGroup
9
  * Author URI: https://www.mailerlite.com
10
  * License: GPLv2 or later
@@ -28,7 +28,7 @@
28
  define('MAILERLITE_PLUGIN_DIR', plugin_dir_path(__FILE__));
29
  define('MAILERLITE_PLUGIN_URL', plugins_url('', __FILE__));
30
 
31
- define('MAILERLITE_VERSION', '1.0.15');
32
 
33
  function mailerlite_load_plugin_textdomain()
34
  {
4
  * Plugin Name: Official MailerLite Sign Up Forms
5
  * Description: Official MailerLite Sign Up Forms plugin for WordPress. Ability
6
  * to embed MailerLite webforms and create custom ones just with few clicks.
7
+ * Version: 1.0.16
8
  * Author: MailerGroup
9
  * Author URI: https://www.mailerlite.com
10
  * License: GPLv2 or later
28
  define('MAILERLITE_PLUGIN_DIR', plugin_dir_path(__FILE__));
29
  define('MAILERLITE_PLUGIN_URL', plugins_url('', __FILE__));
30
 
31
+ define('MAILERLITE_VERSION', '1.0.16');
32
 
33
  function mailerlite_load_plugin_textdomain()
34
  {
trunk/readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.mailerlite.com/
4
  Tags: mailerlite, newsletter, subscribe, form, webform
5
  Requires at least: 3.0.1
6
  Tested up to: 4.3.1
7
- Stable tag: 1.0.15
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -127,6 +127,8 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
127
 
128
  == Changelog ==
129
 
 
 
130
  = 1.0.15 =
131
  * Updated links to knowledge base about api key, changed db charset for table - utf8_bin
132
  = 1.0.14 =
@@ -162,7 +164,9 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
162
 
163
  == Upgrade Notice ==
164
 
165
- = 1.0.14 =
 
 
166
  * Updated links to knowledge base about api key, changed db charset for table - utf8_bin
167
  = 1.0.14 =
168
  * Removed new lines for some cases
4
  Tags: mailerlite, newsletter, subscribe, form, webform
5
  Requires at least: 3.0.1
6
  Tested up to: 4.3.1
7
+ Stable tag: 1.0.16
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
127
 
128
  == Changelog ==
129
 
130
+ = 1.0.16 =
131
+ * links to https, db update charset
132
  = 1.0.15 =
133
  * Updated links to knowledge base about api key, changed db charset for table - utf8_bin
134
  = 1.0.14 =
164
 
165
  == Upgrade Notice ==
166
 
167
+ = 1.0.16 =
168
+ * links to https, db update charset
169
+ = 1.0.15 =
170
  * Updated links to knowledge base about api key, changed db charset for table - utf8_bin
171
  = 1.0.14 =
172
  * Removed new lines for some cases