Version Description
- Fixed the module version check
Download this release
Release Info
Developer | satollo |
Plugin | Newsletter |
Version | 3.3.4 |
Comparing to | |
See all releases |
Code changes from version 3.3.3 to 3.3.4
- plugin.php +4 -3
- readme.txt +5 -1
plugin.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Newsletter
|
5 |
Plugin URI: http://www.satollo.net/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="http://www.satollo.net/plugins/newsletter#update">this page</a> to know what's changed.</strong>
|
7 |
-
Version: 3.3.
|
8 |
Author: Stefano Lissa
|
9 |
Author URI: http://www.satollo.net
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
@@ -119,7 +119,7 @@ class Newsletter extends NewsletterModule {
|
|
119 |
// Here because the upgrade is called by the parent constructor and uses the scheduler
|
120 |
add_filter('cron_schedules', array($this, 'hook_cron_schedules'), 1000);
|
121 |
|
122 |
-
parent::__construct('main', '1.1.
|
123 |
|
124 |
$max = $this->options['scheduler_max'];
|
125 |
if (!is_numeric($max))
|
@@ -234,7 +234,8 @@ class Newsletter extends NewsletterModule {
|
|
234 |
wp_schedule_event(time() + 30, 'newsletter', 'newsletter');
|
235 |
|
236 |
wp_clear_scheduled_hook('newsletter_update');
|
237 |
-
|
|
|
238 |
|
239 |
wp_mkdir_p(WP_CONTENT_DIR . '/extensions/newsletter');
|
240 |
wp_mkdir_p(WP_CONTENT_DIR . '/cache/newsletter');
|
4 |
Plugin Name: Newsletter
|
5 |
Plugin URI: http://www.satollo.net/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="http://www.satollo.net/plugins/newsletter#update">this page</a> to know what's changed.</strong>
|
7 |
+
Version: 3.3.4
|
8 |
Author: Stefano Lissa
|
9 |
Author URI: http://www.satollo.net
|
10 |
Disclaimer: Use at your own risk. No warranty expressed or implied is provided.
|
119 |
// Here because the upgrade is called by the parent constructor and uses the scheduler
|
120 |
add_filter('cron_schedules', array($this, 'hook_cron_schedules'), 1000);
|
121 |
|
122 |
+
parent::__construct('main', '1.1.8');
|
123 |
|
124 |
$max = $this->options['scheduler_max'];
|
125 |
if (!is_numeric($max))
|
234 |
wp_schedule_event(time() + 30, 'newsletter', 'newsletter');
|
235 |
|
236 |
wp_clear_scheduled_hook('newsletter_update');
|
237 |
+
wp_clear_scheduled_hook('newsletter_check_versions');
|
238 |
+
wp_schedule_event(time() + 30, 'weekly', 'newsletter_check_versions');
|
239 |
|
240 |
wp_mkdir_p(WP_CONTENT_DIR . '/extensions/newsletter');
|
241 |
wp_mkdir_p(WP_CONTENT_DIR . '/cache/newsletter');
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing
|
3 |
Requires at least: 3.3.0
|
4 |
Tested up to: 3.5.1
|
5 |
-
Stable tag: 3.3.
|
6 |
Donate link: http://www.satollo.net/donations
|
7 |
|
8 |
Add a real newsletter to your blog. In seconds. For free. With unlimited emails and subscribers.
|
@@ -55,6 +55,10 @@ No screen shots are available at this time.
|
|
55 |
|
56 |
== Changelog ==
|
57 |
|
|
|
|
|
|
|
|
|
58 |
= 3.3.3 =
|
59 |
|
60 |
* Fixed the IP tracking on opening
|
2 |
Tags: newsletter,email,subscription,mass mail,list build,email marketing,direct mailing
|
3 |
Requires at least: 3.3.0
|
4 |
Tested up to: 3.5.1
|
5 |
+
Stable tag: 3.3.4
|
6 |
Donate link: http://www.satollo.net/donations
|
7 |
|
8 |
Add a real newsletter to your blog. In seconds. For free. With unlimited emails and subscribers.
|
55 |
|
56 |
== Changelog ==
|
57 |
|
58 |
+
= 3.3.4 =
|
59 |
+
|
60 |
+
* Fixed the module version check
|
61 |
+
|
62 |
= 3.3.3 =
|
63 |
|
64 |
* Fixed the IP tracking on opening
|