Version Description
- 8th February 2022 =
- Fixed: A fatal error when sending an email address changed notification.
Download this release
Release Info
Developer | voltronik |
Plugin | Better Notifications for WordPress |
Version | 1.8.10 |
Comparing to | |
See all releases |
Code changes from version 1.8.9 to 1.8.10
- README.txt +4 -1
- bnfw.php +4 -4
- includes/helpers/helpers.php +0 -0
- includes/license/class-bnfw-license-setting.php +0 -0
- includes/license/class-bnfw-license.php +0 -0
- includes/overrides.php +0 -0
README.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: notification, email, alert, message, notify, send, HTML, customize, bulk,
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 7.0
|
8 |
-
Stable tag: 1.8.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
Update URI: https://wordpress.org/plugins/bnfw/
|
@@ -242,6 +242,9 @@ Yes, of course! The plugin is completely translation-friendly and if you send me
|
|
242 |
|
243 |
== Changelog ==
|
244 |
|
|
|
|
|
|
|
245 |
= 1.8.9 - 8th February 2022 =
|
246 |
* Fixed: HTML formatting wasn't being applied to notifications since WordPress 5.9.
|
247 |
* Fixed: Searching/selecting users on smaller sites was not rendering any results.
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.9
|
7 |
Requires PHP: 7.0
|
8 |
+
Stable tag: 1.8.10
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
Update URI: https://wordpress.org/plugins/bnfw/
|
242 |
|
243 |
== Changelog ==
|
244 |
|
245 |
+
= 1.8.10 - 8th February 2022 =
|
246 |
+
* Fixed: A fatal error when sending an email address changed notification.
|
247 |
+
|
248 |
= 1.8.9 - 8th February 2022 =
|
249 |
* Fixed: HTML formatting wasn't being applied to notifications since WordPress 5.9.
|
250 |
* Fixed: Searching/selecting users on smaller sites was not rendering any results.
|
bnfw.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Better Notifications for WP
|
4 |
* Plugin URI: https://wordpress.org/plugins/bnfw/
|
5 |
* Description: Supercharge your WordPress notifications using a WYSIWYG editor and shortcodes. Default and new notifications available. Add more power with Add-ons.
|
6 |
-
* Version: 1.8.
|
7 |
* Requires at least: 4.8
|
8 |
* Requires PHP: 7.0
|
9 |
* Author: Made with Fuel
|
@@ -39,7 +39,7 @@ if ( ! class_exists( 'BNFW', false ) ) {
|
|
39 |
*
|
40 |
* @var string
|
41 |
*/
|
42 |
-
public $bnfw_version = '1.8.
|
43 |
/**
|
44 |
* Class Constructor.
|
45 |
*
|
@@ -746,7 +746,7 @@ if ( ! class_exists( 'BNFW', false ) ) {
|
|
746 |
* @return bool
|
747 |
*/
|
748 |
public function should_password_changed_email_be_sent( $send, $user, $userdata ) {
|
749 |
-
$bnfw =
|
750 |
|
751 |
if ( ! $send ) {
|
752 |
return $send;
|
@@ -779,7 +779,7 @@ if ( ! class_exists( 'BNFW', false ) ) {
|
|
779 |
* @return bool
|
780 |
*/
|
781 |
public function should_email_changed_email_be_sent( $send, $user_old_data, $user_new_data ) {
|
782 |
-
$bnfw =
|
783 |
|
784 |
if ( $bnfw->notifier->notification_exists( 'admin-email-changed', false ) ) {
|
785 |
$notifications = $bnfw->notifier->get_notifications( 'admin-email-changed' );
|
3 |
* Plugin Name: Better Notifications for WP
|
4 |
* Plugin URI: https://wordpress.org/plugins/bnfw/
|
5 |
* Description: Supercharge your WordPress notifications using a WYSIWYG editor and shortcodes. Default and new notifications available. Add more power with Add-ons.
|
6 |
+
* Version: 1.8.10
|
7 |
* Requires at least: 4.8
|
8 |
* Requires PHP: 7.0
|
9 |
* Author: Made with Fuel
|
39 |
*
|
40 |
* @var string
|
41 |
*/
|
42 |
+
public $bnfw_version = '1.8.10';
|
43 |
/**
|
44 |
* Class Constructor.
|
45 |
*
|
746 |
* @return bool
|
747 |
*/
|
748 |
public function should_password_changed_email_be_sent( $send, $user, $userdata ) {
|
749 |
+
$bnfw = BNFW::factory();
|
750 |
|
751 |
if ( ! $send ) {
|
752 |
return $send;
|
779 |
* @return bool
|
780 |
*/
|
781 |
public function should_email_changed_email_be_sent( $send, $user_old_data, $user_new_data ) {
|
782 |
+
$bnfw = BNFW::factory();
|
783 |
|
784 |
if ( $bnfw->notifier->notification_exists( 'admin-email-changed', false ) ) {
|
785 |
$notifications = $bnfw->notifier->get_notifications( 'admin-email-changed' );
|
includes/helpers/helpers.php
CHANGED
File without changes
|
includes/license/class-bnfw-license-setting.php
CHANGED
File without changes
|
includes/license/class-bnfw-license.php
CHANGED
File without changes
|
includes/overrides.php
CHANGED
File without changes
|