Version Description
- Fix mistype in curl method
Download this release
Release Info
Developer | mailerlite |
Plugin | Official MailerLite Sign Up Forms |
Version | 1.0.12 |
Comparing to | |
See all releases |
Code changes from version 1.0.11 to 1.0.12
- libs/mailerlite_rest/base/ML_Rest_Base.php +2 -1
- mailerlite.php +2 -2
- readme.txt +7 -3
libs/mailerlite_rest/base/ML_Rest_Base.php
CHANGED
@@ -150,8 +150,9 @@ class ML_Rest_Base
|
|
150 |
|
151 |
curl_setopt($curlHandle, CURLOPT_SSL_VERIFYHOST, false);
|
152 |
curl_setopt($curlHandle, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
153 |
if (!ini_get('open_basedir') && !ini_get('safe_mode')) {
|
154 |
-
|
155 |
}
|
156 |
}
|
157 |
|
150 |
|
151 |
curl_setopt($curlHandle, CURLOPT_SSL_VERIFYHOST, false);
|
152 |
curl_setopt($curlHandle, CURLOPT_SSL_VERIFYPEER, false);
|
153 |
+
|
154 |
if (!ini_get('open_basedir') && !ini_get('safe_mode')) {
|
155 |
+
curl_setopt($curlHandle, CURLOPT_FOLLOWLOCATION, true);
|
156 |
}
|
157 |
}
|
158 |
|
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.
|
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.
|
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.12
|
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.12');
|
32 |
|
33 |
function mailerlite_load_plugin_textdomain()
|
34 |
{
|
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.1
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -127,10 +127,12 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
|
|
127 |
|
128 |
== Changelog ==
|
129 |
|
|
|
|
|
130 |
= 1.0.11 =
|
131 |
* Version fix
|
132 |
= 1.0.10 =
|
133 |
-
* Some code refactor, array fixes for
|
134 |
= 1.0.9 =
|
135 |
* Curl safe mode fix
|
136 |
= 1.0.8 =
|
@@ -154,10 +156,12 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
|
|
154 |
|
155 |
== Upgrade Notice ==
|
156 |
|
|
|
|
|
157 |
= 1.0.11 =
|
158 |
* Version fix
|
159 |
= 1.0.10 =
|
160 |
-
* Some code refactor, array fixes for
|
161 |
= 1.0.9 =
|
162 |
* Curl safe mode fix
|
163 |
= 1.0.8 =
|
4 |
Tags: mailerlite, newsletter, subscribe, form, webform
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.1
|
7 |
+
Stable tag: 1.0.12
|
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.12 =
|
131 |
+
* Fix mistype in curl method
|
132 |
= 1.0.11 =
|
133 |
* Version fix
|
134 |
= 1.0.10 =
|
135 |
+
* Some code refactor, array fixes for PHP older than 5.4
|
136 |
= 1.0.9 =
|
137 |
* Curl safe mode fix
|
138 |
= 1.0.8 =
|
156 |
|
157 |
== Upgrade Notice ==
|
158 |
|
159 |
+
= 1.0.12 =
|
160 |
+
* Fix mistype in curl method
|
161 |
= 1.0.11 =
|
162 |
* Version fix
|
163 |
= 1.0.10 =
|
164 |
+
* Some code refactor, array fixes for PHP older than 5.4
|
165 |
= 1.0.9 =
|
166 |
* Curl safe mode fix
|
167 |
= 1.0.8 =
|