Newsletter - Version 5.7.5

Version Description

  • Init hook priority fix for who uses alternative wp cron
Download this release

Release Info

Developer satollo
Plugin Icon 128x128 Newsletter
Version 5.7.5
Comparing to
See all releases

Code changes from version 5.7.4 to 5.7.5

main/status.php CHANGED
@@ -572,6 +572,21 @@ $options = $module->get_options('status');
572
  <?php } ?>
573
  </td>
574
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
575
 
576
  <tr>
577
  <td>
572
  <?php } ?>
573
  </td>
574
  </tr>
575
+ <tr>
576
+ <td>
577
+ Alternate cron
578
+ </td>
579
+ <td>
580
+ &nbsp;
581
+ </td>
582
+ <td>
583
+ <?php if (defined('ALTERNATE_WP_CRON') && ALTERNATE_WP_CRON) { ?>
584
+ Using the alternate cron trigger.
585
+ <?php } else { ?>
586
+
587
+ <?php } ?>
588
+ </td>
589
+ </tr>
590
 
591
  <tr>
592
  <td>
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: 5.7.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,7 +14,7 @@
14
  */
15
 
16
  // Used as dummy parameter on css and js links
17
- define('NEWSLETTER_VERSION', '5.7.4');
18
 
19
  global $newsletter, $wpdb;
20
 
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: 5.7.5
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', '5.7.5');
18
 
19
  global $newsletter, $wpdb;
20
 
profile/profile.php CHANGED
@@ -20,7 +20,7 @@ class NewsletterProfile extends NewsletterModule {
20
 
21
  function __construct() {
22
  parent::__construct('profile', '1.1.0');
23
- add_action('init', array($this, 'hook_init'));
24
  add_action('wp_loaded', array($this, 'hook_wp_loaded'));
25
  add_shortcode('newsletter_profile', array($this, 'shortcode_newsletter_profile'));
26
  }
20
 
21
  function __construct() {
22
  parent::__construct('profile', '1.1.0');
23
+ add_action('init', array($this, 'hook_init'), 1);
24
  add_action('wp_loaded', array($this, 'hook_wp_loaded'));
25
  add_shortcode('newsletter_profile', array($this, 'shortcode_newsletter_profile'));
26
  }
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: 4.9.8
5
- Stable tag: 5.7.4
6
  Contributors: satollo,webagile,michael-travan
7
 
8
  Add a real newsletter system to your blog. For free. With unlimited newsletters and subscribers.
@@ -117,6 +117,10 @@ Thank you, The Newsletter Team
117
 
118
  == Changelog ==
119
 
 
 
 
 
120
  = 5.7.4 =
121
 
122
  * Support for first and last name from wp users integration extension
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: 4.9.8
5
+ Stable tag: 5.7.5
6
  Contributors: satollo,webagile,michael-travan
7
 
8
  Add a real newsletter system to your blog. For free. With unlimited newsletters and subscribers.
117
 
118
  == Changelog ==
119
 
120
+ = 5.7.5 =
121
+
122
+ * Init hook priority fix for who uses alternative wp cron
123
+
124
  = 5.7.4 =
125
 
126
  * Support for first and last name from wp users integration extension
unsubscription/unsubscription.php CHANGED
@@ -20,7 +20,7 @@ class NewsletterUnsubscription extends NewsletterModule {
20
 
21
  function __construct() {
22
  parent::__construct('unsubscription', '1.0.0');
23
- add_action('init', array($this, 'hook_init'));
24
  add_action('wp_loaded', array($this, 'hook_wp_loaded'));
25
  }
26
 
20
 
21
  function __construct() {
22
  parent::__construct('unsubscription', '1.0.0');
23
+ add_action('init', array($this, 'hook_init'), 1);
24
  add_action('wp_loaded', array($this, 'hook_wp_loaded'));
25
  }
26