Version Description
- php notice fix
Download this release
Release Info
Developer | mailerlite |
Plugin | Official MailerLite Sign Up Forms |
Version | 1.1.5 |
Comparing to | |
See all releases |
Code changes from version 1.1.4 to 1.1.5
- include/templates/admin/edit_custom.php +1 -1
- mailerlite.php +2 -2
- readme.txt +5 -1
include/templates/admin/edit_custom.php
CHANGED
@@ -81,7 +81,7 @@
|
|
81 |
<select id="language" name="language">
|
82 |
<?php foreach ($languages as $langKey => $langName): ?>
|
83 |
<option data-code="<?php echo $langKey; ?>"
|
84 |
-
value="<?php echo $langKey; ?>"<?php echo $langKey == $form->data['language'] ? ' selected="selected"' : ''; ?>><?php echo $langName; ?></option>
|
85 |
<?php endforeach; ?>
|
86 |
</select>
|
87 |
|
81 |
<select id="language" name="language">
|
82 |
<?php foreach ($languages as $langKey => $langName): ?>
|
83 |
<option data-code="<?php echo $langKey; ?>"
|
84 |
+
value="<?php echo $langKey; ?>"<?php echo $langKey == (isset($form->data['language'])?$form->data['language']:'') ? ' selected="selected"' : ''; ?>><?php echo $langName; ?></option>
|
85 |
<?php endforeach; ?>
|
86 |
</select>
|
87 |
|
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.1.
|
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.1.
|
32 |
|
33 |
define('MAILERLITE_PHP_VERSION', '5.0.1');
|
34 |
define('MAILERLITE_WP_VERSION', '3.0.1');
|
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.1.5
|
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.1.5');
|
32 |
|
33 |
define('MAILERLITE_PHP_VERSION', '5.0.1');
|
34 |
define('MAILERLITE_WP_VERSION', '3.0.1');
|
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.5.1
|
7 |
-
Stable tag: 1.1.
|
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.1.4 =
|
131 |
* fixed jquery bug
|
132 |
= 1.1.3 =
|
@@ -178,6 +180,8 @@ Add your custom CSS rules to the end of your theme stylesheet, /wp-content/theme
|
|
178 |
|
179 |
== Upgrade Notice ==
|
180 |
|
|
|
|
|
181 |
= 1.1.4 =
|
182 |
* fixed jquery bug
|
183 |
= 1.1.3 =
|
4 |
Tags: mailerlite, newsletter, subscribe, form, webform
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 4.5.1
|
7 |
+
Stable tag: 1.1.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
127 |
|
128 |
== Changelog ==
|
129 |
|
130 |
+
= 1.1.5 =
|
131 |
+
* php notice fix
|
132 |
= 1.1.4 =
|
133 |
* fixed jquery bug
|
134 |
= 1.1.3 =
|
180 |
|
181 |
== Upgrade Notice ==
|
182 |
|
183 |
+
= 1.1.5 =
|
184 |
+
* php notice fix
|
185 |
= 1.1.4 =
|
186 |
* fixed jquery bug
|
187 |
= 1.1.3 =
|