Plugin Directory

Changeset 2685701


Ignore:
Timestamp:
02/28/2022 02:28:44 AM (4 years ago)
Author:
MyThemeShop
Message:

Update to version 1.0.12 from GitHub

Location:
wp-notification-bars
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-notification-bars/tags/1.0.12/includes/class-wp-notification-bars-shared.php

    r2660479 r2685701  
    9999                $bar = get_post_meta( $post->ID, '_mtsnb_override_bar', true );
    100100
    101                 if ( $bar && ! empty( $bar ) ) {
     101                if ( $bar && ! empty( $bar ) && 'publish' == get_post_status ( $bar_id ) ) {
    102102
    103103                    $bar_id = isset( $bar[0] ) ? $bar[0] : false;
  • wp-notification-bars/tags/1.0.12/includes/class-wp-notification-bars.php

    r2660480 r2685701  
    7070
    7171        $this->plugin_name = 'wp-notification-bars';
    72         $this->version     = '1.0.11';
     72        $this->version     = '1.0.12';
    7373
    7474        $this->load_dependencies();
  • wp-notification-bars/tags/1.0.12/readme.txt

    r2660480 r2685701  
    44Tags: notification, alert, notification bar, welcome google visitor, welcome facebook visitor, attention bar, floating bar, message, notice, sticky header, offer bar, hello bar
    55Requires at least: 3.0.1
    6 Tested up to: 5.8.3
    7 Stable tag: 1.0.11
     6Tested up to: 5.9.1
     7Stable tag: 1.0.12
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 1.0.12 =
     78* Fixed: Post-specific "Select Notification Bar" option not working correctly in some cases
     79
    7780= 1.0.11 =
    7881* Security improvements
  • wp-notification-bars/tags/1.0.12/wp-notification-bars.php

    r2660480 r2685701  
    55 * Plugin URI:        https://mythemeshop.com/plugins/wp-notification-bars/
    66 * Description:       WP Notification Bars is a custom notification and alert bar plugin for WordPress which is perfect for marketing promotions, alerts, increasing click throughs to other pages and so much more.
    7  * Version:           1.0.11
     7 * Version:           1.0.12
    88 * Author:            MyThemeShop
    99 * Author URI:        https://mythemeshop.com/
  • wp-notification-bars/trunk/includes/class-wp-notification-bars-shared.php

    r2660479 r2685701  
    9999                $bar = get_post_meta( $post->ID, '_mtsnb_override_bar', true );
    100100
    101                 if ( $bar && ! empty( $bar ) ) {
     101                if ( $bar && ! empty( $bar ) && 'publish' == get_post_status ( $bar_id ) ) {
    102102
    103103                    $bar_id = isset( $bar[0] ) ? $bar[0] : false;
  • wp-notification-bars/trunk/includes/class-wp-notification-bars.php

    r2660480 r2685701  
    7070
    7171        $this->plugin_name = 'wp-notification-bars';
    72         $this->version     = '1.0.11';
     72        $this->version     = '1.0.12';
    7373
    7474        $this->load_dependencies();
  • wp-notification-bars/trunk/readme.txt

    r2660480 r2685701  
    44Tags: notification, alert, notification bar, welcome google visitor, welcome facebook visitor, attention bar, floating bar, message, notice, sticky header, offer bar, hello bar
    55Requires at least: 3.0.1
    6 Tested up to: 5.8.3
    7 Stable tag: 1.0.11
     6Tested up to: 5.9.1
     7Stable tag: 1.0.12
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575== Changelog ==
    7676
     77= 1.0.12 =
     78* Fixed: Post-specific "Select Notification Bar" option not working correctly in some cases
     79
    7780= 1.0.11 =
    7881* Security improvements
  • wp-notification-bars/trunk/wp-notification-bars.php

    r2660480 r2685701  
    55 * Plugin URI:        https://mythemeshop.com/plugins/wp-notification-bars/
    66 * Description:       WP Notification Bars is a custom notification and alert bar plugin for WordPress which is perfect for marketing promotions, alerts, increasing click throughs to other pages and so much more.
    7  * Version:           1.0.11
     7 * Version:           1.0.12
    88 * Author:            MyThemeShop
    99 * Author URI:        https://mythemeshop.com/
Note: See TracChangeset for help on using the changeset viewer.