Version Description
- Fixed link and color picker on text block
Download this release
Release Info
Developer | satollo |
Plugin | Newsletter |
Version | 6.0.3 |
Comparing to | |
See all releases |
Code changes from version 6.0.2 to 6.0.3
- includes/fields.php +2 -1
- main/main.php +2 -0
- plugin.php +2 -2
- readme.txt +5 -1
includes/fields.php
CHANGED
@@ -116,7 +116,8 @@ class NewsletterFields {
|
|
116 |
echo '<textarea id="options-' . esc_attr($name) . '" name="options[' . esc_attr($name) . ']" style="width: 100%;height:250px">';
|
117 |
echo esc_html($value);
|
118 |
echo '</textarea>';
|
119 |
-
echo '<script>wp.editor.remove("options-', $name, '");
|
|
|
120 |
$this->_description($attrs);
|
121 |
$this->_close();
|
122 |
}
|
116 |
echo '<textarea id="options-' . esc_attr($name) . '" name="options[' . esc_attr($name) . ']" style="width: 100%;height:250px">';
|
117 |
echo esc_html($value);
|
118 |
echo '</textarea>';
|
119 |
+
echo '<script>wp.editor.remove("options-', $name, '");';
|
120 |
+
echo 'wp.editor.initialize("options-', $name, '", { tinymce: {toolbar1: "undo redo | formatselect fontselect fontsizeselect | bold italic forecolor backcolor | link unlink | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | removeformat | help", fontsize_formats: "11px 12px 14px 16px 18px 24px 36px 48px", plugins: "link textcolor colorpicker", default_link_target: "_blank", relative_urls : false, convert_urls: false}});</script>';
|
121 |
$this->_description($attrs);
|
122 |
$this->_close();
|
123 |
}
|
main/main.php
CHANGED
@@ -72,6 +72,8 @@ if (!$controls->is_action()) {
|
|
72 |
}
|
73 |
}
|
74 |
|
|
|
|
|
75 |
if (!empty($controls->data['contract_key']) || defined('NEWSLETTER_LICENSE_KEY')) {
|
76 |
|
77 |
if (defined('NEWSLETTER_LICENSE_KEY')) {
|
72 |
}
|
73 |
}
|
74 |
|
75 |
+
/* TODO switch to check_license function */
|
76 |
+
|
77 |
if (!empty($controls->data['contract_key']) || defined('NEWSLETTER_LICENSE_KEY')) {
|
78 |
|
79 |
if (defined('NEWSLETTER_LICENSE_KEY')) {
|
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.0.
|
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.
|
@@ -29,7 +29,7 @@
|
|
29 |
*/
|
30 |
|
31 |
// Used as dummy parameter on css and js links
|
32 |
-
define('NEWSLETTER_VERSION', '6.0.
|
33 |
|
34 |
global $newsletter, $wpdb;
|
35 |
|
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.0.3
|
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.
|
29 |
*/
|
30 |
|
31 |
// Used as dummy parameter on css and js links
|
32 |
+
define('NEWSLETTER_VERSION', '6.0.3');
|
33 |
|
34 |
global $newsletter, $wpdb;
|
35 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing,automation,automated,mailing list
|
3 |
Requires at least: 3.4.0
|
4 |
Tested up to: 5.2.1
|
5 |
-
Stable tag: 6.0.
|
6 |
Contributors: satollo,webagile,michael-travan
|
7 |
|
8 |
Add a real newsletter system to your blog. For free. With unlimited newsletters and subscribers.
|
@@ -122,6 +122,10 @@ Thank you, The Newsletter Team
|
|
122 |
|
123 |
== Changelog ==
|
124 |
|
|
|
|
|
|
|
|
|
125 |
= 6.0.2 =
|
126 |
|
127 |
* Fixed posts block (link missing)
|
2 |
Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing,automation,automated,mailing list
|
3 |
Requires at least: 3.4.0
|
4 |
Tested up to: 5.2.1
|
5 |
+
Stable tag: 6.0.3
|
6 |
Contributors: satollo,webagile,michael-travan
|
7 |
|
8 |
Add a real newsletter system to your blog. For free. With unlimited newsletters and subscribers.
|
122 |
|
123 |
== Changelog ==
|
124 |
|
125 |
+
= 6.0.3 =
|
126 |
+
|
127 |
+
* Fixed link and color picker on text block
|
128 |
+
|
129 |
= 6.0.2 =
|
130 |
|
131 |
* Fixed posts block (link missing)
|