Better Notifications for WordPress - Version 1.3.7

Version Description

  • 11th December 2015 =
  • Fixed: An issue where EDD_SL_Plugin_Updater class was already declared by another plugin.
Download this release

Release Info

Developer voltronik
Plugin Icon 128x128 Better Notifications for WordPress
Version 1.3.7
Comparing to
See all releases

Code changes from version 1.3.6 to 1.3.7

Files changed (2) hide show
  1. README.txt +4 -1
  2. bnfw.php +4 -2
README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://betternotificationsforwp.com/donate/
4
  Tags: notifications, email, mail, alerts, roles, user, users, admin, HTML, plain, wp_mail, shortcode, customize, post, page, updated, pending review, scheduled, category, tag, term, custom post type, comment, akismet, trackback, pingback, lost password, welcome, new user, bulk, notice, trigger, CC, BCC, from, author
5
  Requires at least: 3.5
6
  Tested up to: 4.4
7
- Stable tag: 1.3.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -175,6 +175,9 @@ It might do but this is untested.
175
 
176
  == Changelog ==
177
 
 
 
 
178
  = 1.3.6 - 11th December 2015 =
179
  * Merry Christmas to you all!
180
  * New: Password Reset notifications can now be in HTML or Plain Text.
4
  Tags: notifications, email, mail, alerts, roles, user, users, admin, HTML, plain, wp_mail, shortcode, customize, post, page, updated, pending review, scheduled, category, tag, term, custom post type, comment, akismet, trackback, pingback, lost password, welcome, new user, bulk, notice, trigger, CC, BCC, from, author
5
  Requires at least: 3.5
6
  Tested up to: 4.4
7
+ Stable tag: 1.3.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
175
 
176
  == Changelog ==
177
 
178
+ = 1.3.7 - 11th December 2015 =
179
+ * Fixed: An issue where EDD_SL_Plugin_Updater class was already declared by another plugin.
180
+
181
  = 1.3.6 - 11th December 2015 =
182
  * Merry Christmas to you all!
183
  * New: Password Reset notifications can now be in HTML or Plain Text.
bnfw.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Better Notifications for WordPress
4
  * Plugin URI: http://wordpress.org/plugins/bnfw/
5
  * Description: Send customisable emails to your users for different WordPress notifications.
6
- * Version: 1.3.6
7
  * Author: Voltronik
8
  * Author URI: https://betternotificationsforwp.com/
9
  * Author Email: plugins@voltronik.co.uk
@@ -75,7 +75,9 @@ class BNFW {
75
  */
76
  public function includes() {
77
  // Load license related classes
78
- require_once 'includes/libraries/EDD_SL_Plugin_Updater.php';
 
 
79
  require_once 'includes/license/class-bnfw-license.php';
80
  require_once 'includes/license/class-bnfw-license-setting.php';
81
 
3
  * Plugin Name: Better Notifications for WordPress
4
  * Plugin URI: http://wordpress.org/plugins/bnfw/
5
  * Description: Send customisable emails to your users for different WordPress notifications.
6
+ * Version: 1.3.7
7
  * Author: Voltronik
8
  * Author URI: https://betternotificationsforwp.com/
9
  * Author Email: plugins@voltronik.co.uk
75
  */
76
  public function includes() {
77
  // Load license related classes
78
+ if ( ! class_exists( 'EDD_SL_Plugin_Updater' ) ) {
79
+ require_once 'includes/libraries/EDD_SL_Plugin_Updater.php';
80
+ }
81
  require_once 'includes/license/class-bnfw-license.php';
82
  require_once 'includes/license/class-bnfw-license-setting.php';
83