Version Description
- Fix of confirmation_url attribute on minimal subscription form
Download this release
Release Info
Developer | satollo |
Plugin | Newsletter |
Version | 6.8.7 |
Comparing to | |
See all releases |
Code changes from version 6.8.6 to 6.8.7
- plugin.php +2 -2
- readme.txt +5 -2
- subscription/subscription.php +1 -1
plugin.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Newsletter
|
5 |
Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
|
6 |
Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
|
7 |
-
Version: 6.8.
|
8 |
Author: Stefano Lissa & The Newsletter Team
|
9 |
Author URI: https://www.thenewsletterplugin.com
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
@@ -35,7 +35,7 @@ if (version_compare(phpversion(), '5.6', '<')) {
|
|
35 |
return;
|
36 |
}
|
37 |
|
38 |
-
define('NEWSLETTER_VERSION', '6.8.
|
39 |
|
40 |
global $newsletter, $wpdb;
|
41 |
|
4 |
Plugin Name: Newsletter
|
5 |
Plugin URI: https://www.thenewsletterplugin.com/plugins/newsletter
|
6 |
Description: Newsletter is a cool plugin to create your own subscriber list, to send newsletters, to build your business. <strong>Before update give a look to <a href="https://www.thenewsletterplugin.com/category/release">this page</a> to know what's changed.</strong>
|
7 |
+
Version: 6.8.7
|
8 |
Author: Stefano Lissa & The Newsletter Team
|
9 |
Author URI: https://www.thenewsletterplugin.com
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
35 |
return;
|
36 |
}
|
37 |
|
38 |
+
define('NEWSLETTER_VERSION', '6.8.7');
|
39 |
|
40 |
global $newsletter, $wpdb;
|
41 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
|
3 |
Requires at least: 3.4.0
|
4 |
Tested up to: 5.5
|
5 |
-
Stable tag: 6.8.
|
6 |
Requires PHP: 5.6
|
7 |
Contributors: satollo,webagile,michael-travan
|
8 |
|
@@ -113,6 +113,10 @@ Thank you, The Newsletter Team
|
|
113 |
|
114 |
== Changelog ==
|
115 |
|
|
|
|
|
|
|
|
|
116 |
= 6.8.6 =
|
117 |
|
118 |
* Disabled the default WordPress emoji to image replacer on admin pages of Newsletter
|
@@ -120,7 +124,6 @@ Thank you, The Newsletter Team
|
|
120 |
= 6.8.5 =
|
121 |
|
122 |
* Updated Controls class to support the new Reports Addon
|
123 |
-
* Fix of confirmation_url attribute on minimal subscription form
|
124 |
|
125 |
= 6.8.4 =
|
126 |
|
2 |
Tags: email, email marketing, newsletter, newsletter subscribers, welcome email, signup forms, contact, lead generation, popup, marketing automation
|
3 |
Requires at least: 3.4.0
|
4 |
Tested up to: 5.5
|
5 |
+
Stable tag: 6.8.7
|
6 |
Requires PHP: 5.6
|
7 |
Contributors: satollo,webagile,michael-travan
|
8 |
|
113 |
|
114 |
== Changelog ==
|
115 |
|
116 |
+
= 6.8.7 =
|
117 |
+
|
118 |
+
* Fix of confirmation_url attribute on minimal subscription form
|
119 |
+
|
120 |
= 6.8.6 =
|
121 |
|
122 |
* Disabled the default WordPress emoji to image replacer on admin pages of Newsletter
|
124 |
= 6.8.5 =
|
125 |
|
126 |
* Updated Controls class to support the new Reports Addon
|
|
|
127 |
|
128 |
= 6.8.4 =
|
129 |
|
subscription/subscription.php
CHANGED
@@ -1763,7 +1763,7 @@ class NewsletterSubscription extends NewsletterModule {
|
|
1763 |
}
|
1764 |
|
1765 |
if (isset($attrs['confirmation_url'])) {
|
1766 |
-
$
|
1767 |
}
|
1768 |
|
1769 |
if (isset($attrs['lists'])) {
|
1763 |
}
|
1764 |
|
1765 |
if (isset($attrs['confirmation_url'])) {
|
1766 |
+
$form .= "<input type='hidden' name='ncu' value='" . esc_attr($attrs['confirmation_url']) . "'>\n";
|
1767 |
}
|
1768 |
|
1769 |
if (isset($attrs['lists'])) {
|