Version Description
- Compatibility fix.
Download this release
Release Info
Developer | syammohanm |
Plugin | WPFront Notification Bar |
Version | 1.9.1 |
Comparing to | |
See all releases |
Code changes from version 1.9.0 to 1.9.1
- classes/class-wpfront-notification-bar.php +5 -5
- readme.txt +7 -1
- wpfront-notification-bar.php +1 -1
classes/class-wpfront-notification-bar.php
CHANGED
@@ -35,7 +35,7 @@ if (!class_exists('WPFront_Notification_Bar')) {
|
|
35 |
class WPFront_Notification_Bar {
|
36 |
|
37 |
//Constants
|
38 |
-
const VERSION = '1.9.
|
39 |
const OPTIONS_GROUP_NAME = 'wpfront-notification-bar-options-group';
|
40 |
const OPTION_NAME = 'wpfront-notification-bar-options';
|
41 |
const PLUGIN_SLUG = 'wpfront-notification-bar';
|
@@ -647,19 +647,19 @@ if (!class_exists('WPFront_Notification_Bar')) {
|
|
647 |
return TRUE;
|
648 |
}
|
649 |
|
650 |
-
if (wp_doing_ajax()) {
|
651 |
return TRUE;
|
652 |
}
|
653 |
|
654 |
-
if (wp_is_json_request()) {
|
655 |
return TRUE;
|
656 |
}
|
657 |
|
658 |
-
if (wp_is_jsonp_request()) {
|
659 |
return TRUE;
|
660 |
}
|
661 |
|
662 |
-
if (wp_is_xml_request()) {
|
663 |
return TRUE;
|
664 |
}
|
665 |
|
35 |
class WPFront_Notification_Bar {
|
36 |
|
37 |
//Constants
|
38 |
+
const VERSION = '1.9.1.04012';
|
39 |
const OPTIONS_GROUP_NAME = 'wpfront-notification-bar-options-group';
|
40 |
const OPTION_NAME = 'wpfront-notification-bar-options';
|
41 |
const PLUGIN_SLUG = 'wpfront-notification-bar';
|
647 |
return TRUE;
|
648 |
}
|
649 |
|
650 |
+
if (function_exists('wp_doing_ajax') && wp_doing_ajax()) {
|
651 |
return TRUE;
|
652 |
}
|
653 |
|
654 |
+
if (function_exists('wp_is_json_request') && wp_is_json_request()) {
|
655 |
return TRUE;
|
656 |
}
|
657 |
|
658 |
+
if (function_exists('wp_is_jsonp_request') && wp_is_jsonp_request()) {
|
659 |
return TRUE;
|
660 |
}
|
661 |
|
662 |
+
if (function_exists('wp_is_xml_request') && wp_is_xml_request()) {
|
663 |
return TRUE;
|
664 |
}
|
665 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: notification bar, wordpress notification bar, top bar, bottom bar, notific
|
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.7
|
7 |
Requires PHP: 7.0
|
8 |
-
Stable tag: 1.9.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
@@ -68,6 +68,9 @@ The new version(1.3) allows you to filter the bar based on user roles. In this c
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
71 |
= 1.9.0 =
|
72 |
* Reopen button image is now configurable.
|
73 |
* Add dynamic CSS through URL.
|
@@ -147,6 +150,9 @@ The new version(1.3) allows you to filter the bar based on user roles. In this c
|
|
147 |
|
148 |
== Upgrade Notice ==
|
149 |
|
|
|
|
|
|
|
150 |
= 1.9.0 =
|
151 |
* Compatibility fixes.
|
152 |
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.7
|
7 |
Requires PHP: 7.0
|
8 |
+
Stable tag: 1.9.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.9.1 =
|
72 |
+
* Compatibility fix.
|
73 |
+
|
74 |
= 1.9.0 =
|
75 |
* Reopen button image is now configurable.
|
76 |
* Add dynamic CSS through URL.
|
150 |
|
151 |
== Upgrade Notice ==
|
152 |
|
153 |
+
= 1.9.1 =
|
154 |
+
* Compatibility fix.
|
155 |
+
|
156 |
= 1.9.0 =
|
157 |
* Compatibility fixes.
|
158 |
|
wpfront-notification-bar.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WPFront Notification Bar
|
4 |
* Plugin URI: http://wpfront.com/notification-bar-plugin/
|
5 |
* Description: Easily lets you create a bar on top or bottom to display a notification.
|
6 |
-
* Version: 1.9.
|
7 |
* Requires at least: 5.0
|
8 |
* Requires PHP: 7.0
|
9 |
* Author: Syam Mohan
|
3 |
* Plugin Name: WPFront Notification Bar
|
4 |
* Plugin URI: http://wpfront.com/notification-bar-plugin/
|
5 |
* Description: Easily lets you create a bar on top or bottom to display a notification.
|
6 |
+
* Version: 1.9.1.04012
|
7 |
* Requires at least: 5.0
|
8 |
* Requires PHP: 7.0
|
9 |
* Author: Syam Mohan
|