Version Description
=
- Admin css fix
- Log fix
=
Download this release
Release Info
Developer | satollo |
Plugin | Newsletter |
Version | 4.9.4 |
Comparing to | |
See all releases |
Code changes from version 4.9.3 to 4.9.4
- admin.css +3 -3
- plugin.php +4 -3
- readme.txt +6 -1
admin.css
CHANGED
@@ -863,13 +863,13 @@ p.description {
|
|
863 |
/* display: inline-block; */
|
864 |
/* background-color: #34495E; */
|
865 |
/* color: #fff !important; */
|
866 |
-
padding: 15px 0px;
|
867 |
margin-bottom: 10px;
|
868 |
-
width: 200px
|
869 |
/* text-align: right; */
|
870 |
-
border-bottom: 2px solid #27AE60
|
871 |
}
|
872 |
|
|
|
873 |
.tnp-body-lite {
|
874 |
background-color: #F1F1F1 !important;
|
875 |
}
|
863 |
/* display: inline-block; */
|
864 |
/* background-color: #34495E; */
|
865 |
/* color: #fff !important; */
|
|
|
866 |
margin-bottom: 10px;
|
867 |
+
/* width: 200px;*/
|
868 |
/* text-align: right; */
|
869 |
+
/* border-bottom: 2px solid #27AE60;*/
|
870 |
}
|
871 |
|
872 |
+
|
873 |
.tnp-body-lite {
|
874 |
background-color: #F1F1F1 !important;
|
875 |
}
|
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: 4.9.
|
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.
|
@@ -14,7 +14,7 @@
|
|
14 |
*/
|
15 |
|
16 |
// Used as dummy parameter on css and js links
|
17 |
-
define('NEWSLETTER_VERSION', '4.9.
|
18 |
|
19 |
global $wpdb, $newsletter;
|
20 |
|
@@ -580,7 +580,7 @@ class Newsletter extends NewsletterModule {
|
|
580 |
}
|
581 |
|
582 |
//$query = apply_filters('newsletter_send_query', $email->query, $email);
|
583 |
-
|
584 |
$query .= " and id>" . $email->last_id . " order by id limit " . $max_emails;
|
585 |
|
586 |
$this->logger->debug('send> Query: ' . $query);
|
@@ -592,6 +592,7 @@ class Newsletter extends NewsletterModule {
|
|
592 |
// If there was a database error, do nothing
|
593 |
if ($wpdb->last_error) {
|
594 |
$this->logger->fatal($wpdb->last_error);
|
|
|
595 |
return;
|
596 |
}
|
597 |
|
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: 4.9.4
|
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.
|
14 |
*/
|
15 |
|
16 |
// Used as dummy parameter on css and js links
|
17 |
+
define('NEWSLETTER_VERSION', '4.9.4');
|
18 |
|
19 |
global $wpdb, $newsletter;
|
20 |
|
580 |
}
|
581 |
|
582 |
//$query = apply_filters('newsletter_send_query', $email->query, $email);
|
583 |
+
$query = $email->query;
|
584 |
$query .= " and id>" . $email->last_id . " order by id limit " . $max_emails;
|
585 |
|
586 |
$this->logger->debug('send> Query: ' . $query);
|
592 |
// If there was a database error, do nothing
|
593 |
if ($wpdb->last_error) {
|
594 |
$this->logger->fatal($wpdb->last_error);
|
595 |
+
$this->logger->fatal($wpdb->last_query);
|
596 |
return;
|
597 |
}
|
598 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing,automation,automated
|
3 |
Requires at least: 3.4.0
|
4 |
Tested up to: 4.7.5
|
5 |
-
Stable tag: 4.9.
|
6 |
Contributors: satollo,webagile,michael-travan
|
7 |
|
8 |
Add a real newsletter system to your blog. For free. With unlimited newsletters and subscribers.
|
@@ -85,6 +85,11 @@ Thank you, The Newsletter Team
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
|
|
|
|
88 |
== 4.9.3 ==
|
89 |
|
90 |
* Replacing fix
|
2 |
Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing,automation,automated
|
3 |
Requires at least: 3.4.0
|
4 |
Tested up to: 4.7.5
|
5 |
+
Stable tag: 4.9.4
|
6 |
Contributors: satollo,webagile,michael-travan
|
7 |
|
8 |
Add a real newsletter system to your blog. For free. With unlimited newsletters and subscribers.
|
85 |
|
86 |
== Changelog ==
|
87 |
|
88 |
+
== 4.9.4 ==
|
89 |
+
|
90 |
+
* Admin css fix
|
91 |
+
* Log fix
|
92 |
+
|
93 |
== 4.9.3 ==
|
94 |
|
95 |
* Replacing fix
|