Plugin Directory

Changeset 3124202


Ignore:
Timestamp:
07/23/2024 09:11:11 PM (19 months ago)
Author:
roumi
Message:

Release 3.2.2

Location:
wp-admin-notification-center
Files:
3 edited
25 copied

Legend:

Unmodified
Added
Removed
  • wp-admin-notification-center/tags/3.2.2/assets/js/notice.js

    r3105667 r3124202  
    7676            if (this.needToBeDisplayed(this.adminNotifications[i])
    7777                || this.adminNotifications[i].hasAttribute('aria-hidden')
    78                 || containsSpamWord
    7978                || this.adminNotifications[i].classList.contains('hidden')) {
     79                continue;
     80            }
     81
     82            if (containsSpamWord) {
     83                this.adminNotifications[i].setAttribute('style', 'display: none !important;');
    8084                continue;
    8185            }
  • wp-admin-notification-center/tags/3.2.2/index.php

    r3105667 r3124202  
    66Author URI: https://github.com/roumilb
    77License: GPLv3
    8 Version: 3.2.1
     8Version: 3.2.2
    99Text Domain: wanc
    1010Domain Path: /languages
  • wp-admin-notification-center/tags/3.2.2/readme.txt

    r3105667 r3124202  
    55Tested up to: 6.5
    66Requires PHP: 7.0
    7 Stable tag: 3.2.1
     7Stable tag: 3.2.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535== Changelog ==
    3636
     37= 3.2.2 =
     38* Fix spam word displaying notices
     39
    3740= 3.2.0 =
    3841* Fix notification number showing 0
  • wp-admin-notification-center/trunk/assets/js/notice.js

    r3105667 r3124202  
    7676            if (this.needToBeDisplayed(this.adminNotifications[i])
    7777                || this.adminNotifications[i].hasAttribute('aria-hidden')
    78                 || containsSpamWord
    7978                || this.adminNotifications[i].classList.contains('hidden')) {
     79                continue;
     80            }
     81
     82            if (containsSpamWord) {
     83                this.adminNotifications[i].setAttribute('style', 'display: none !important;');
    8084                continue;
    8185            }
  • wp-admin-notification-center/trunk/index.php

    r3105667 r3124202  
    66Author URI: https://github.com/roumilb
    77License: GPLv3
    8 Version: 3.2.1
     8Version: 3.2.2
    99Text Domain: wanc
    1010Domain Path: /languages
  • wp-admin-notification-center/trunk/readme.txt

    r3105667 r3124202  
    55Tested up to: 6.5
    66Requires PHP: 7.0
    7 Stable tag: 3.2.1
     7Stable tag: 3.2.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3535== Changelog ==
    3636
     37= 3.2.2 =
     38* Fix spam word displaying notices
     39
    3740= 3.2.0 =
    3841* Fix notification number showing 0
Note: See TracChangeset for help on using the changeset viewer.