Newsletter - Version 4.9.5

Version Description

=

  • Fixed table creation with dbDelta

=

Download this release

Release Info

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

Code changes from version 4.9.4 to 4.9.5

Files changed (3) hide show
  1. plugin.php +2 -2
  2. readme.txt +5 -1
  3. users/users.php +2 -2
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.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', '4.9.4');
18
 
19
  global $wpdb, $newsletter;
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: 4.9.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', '4.9.5');
18
 
19
  global $wpdb, $newsletter;
20
 
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.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,6 +85,10 @@ Thank you, The Newsletter Team
85
 
86
  == Changelog ==
87
 
 
 
 
 
88
  == 4.9.4 ==
89
 
90
  * Admin css 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.5
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.5 ==
89
+
90
+ * Fixed table creation with dbDelta
91
+
92
  == 4.9.4 ==
93
 
94
  * Admin css fix
users/users.php CHANGED
@@ -18,7 +18,7 @@ class NewsletterUsers extends NewsletterModule {
18
  }
19
 
20
  function __construct() {
21
- parent::__construct('users', '1.0.7');
22
  add_action('init', array($this, 'hook_init'));
23
  }
24
 
@@ -82,7 +82,7 @@ class NewsletterUsers extends NewsletterModule {
82
  $sql .= "`profile_$i` varchar(255) NOT NULL DEFAULT '',\n";
83
  }
84
  // Leave as last
85
- $sql .= "`test` tinyint(4) NOT NULL DEFAULT '0')\n";
86
  $sql .= "PRIMARY KEY (`id`),
87
  UNIQUE KEY `email` (`email`)
88
  ) ENGINE=MyISAM DEFAULT CHARSET=$charset_collate;";
18
  }
19
 
20
  function __construct() {
21
+ parent::__construct('users', '1.0.8');
22
  add_action('init', array($this, 'hook_init'));
23
  }
24
 
82
  $sql .= "`profile_$i` varchar(255) NOT NULL DEFAULT '',\n";
83
  }
84
  // Leave as last
85
+ $sql .= "`test` tinyint(4) NOT NULL DEFAULT '0',\n";
86
  $sql .= "PRIMARY KEY (`id`),
87
  UNIQUE KEY `email` (`email`)
88
  ) ENGINE=MyISAM DEFAULT CHARSET=$charset_collate;";