Plugin Directory

Changeset 3420779


Ignore:
Timestamp:
12/16/2025 09:04:17 AM (2 months ago)
Author:
themeisle
Message:

Update to version 1.4.1 from GitHub

Location:
disable-admin-notices
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • disable-admin-notices/tags/1.4.1/CHANGELOG.md

    r3390608 r3420779  
     1#####   Version 1.4.1 (2025-12-16)
     2
     3- Enhanced security
     4
    15####   Version 1.4.0 (2025-11-05)
    26
  • disable-admin-notices/tags/1.4.1/disable-admin-notices.php

    r3390608 r3420779  
    55 * Description: Disable admin notices plugin gives you the option to hide updates warnings and inline notices in the admin panel.
    66 * Author: Themeisle
    7  * Version: 1.4.0
     7 * Version: 1.4.1
    88 * Text Domain: disable-admin-notices
    99 * Domain Path: /languages/
  • disable-admin-notices/tags/1.4.1/libs/factory/core/includes/class-factory-migrations.php

    r3390608 r3420779  
    7777    public function check_migrations() {
    7878        if ( $this->is_migration_error() && isset( $_GET['wbcr_factory_fix_migration_error'] ) ) {
    79             $this->fix_migration_error();
    80             wp_safe_redirect( esc_url_raw(remove_query_arg( 'wbcr_factory_fix_migration_error' )) );
    81             die();
     79            if ( isset( $_GET['nonce'] ) && ! empty( $_GET['nonce'] ) && wp_verify_nonce( $_GET['nonce'], 'wbcr_han_fix_migration_error' ) ) {
     80                $this->fix_migration_error();
     81                wp_safe_redirect( esc_url_raw(remove_query_arg( 'wbcr_factory_fix_migration_error' )) );
     82                die();
     83            }
    8284        }
    8385
     
    129131        }
    130132
    131         $fix_migration_error_url = esc_url(add_query_arg( 'wbcr_factory_fix_migration_error', 1 ));
     133        $fix_migration_error_url = esc_url(
     134            add_query_arg(
     135                array(
     136                    'wbcr_factory_fix_migration_error' => 1,
     137                    'nonce'                            => wp_create_nonce( 'wbcr_han_fix_migration_error' ),
     138                ),
     139            )
     140        );
    132141
    133142        $notice_text = $migration_error_text;
  • disable-admin-notices/tags/1.4.1/readme.txt

    r3416846 r3420779  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2
    99
     
    6262
    6363== Changelog ==
     64
     65#####   Version 1.4.1 (2025-12-16)
     66
     67- Enhanced security
     68
     69
     70
    6471
    6572####   Version 1.4.0 (2025-11-05)
  • disable-admin-notices/tags/1.4.1/vendor/composer/installed.php

    r3390608 r3420779  
    22    'root' => array(
    33        'name' => 'codeinwp/disable-admin-notices',
    4         'pretty_version' => 'dev-main',
    5         'version' => 'dev-main',
    6         'reference' => 'e7c0b9b44879caa03be4b09b10e7730a8bdbdee5',
     4        'pretty_version' => 'v1.4.1',
     5        'version' => '1.4.1.0',
     6        'reference' => '405acbbdaa55364f8da19a19bc118477ebb6836f',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'codeinwp/disable-admin-notices' => array(
    14             'pretty_version' => 'dev-main',
    15             'version' => 'dev-main',
    16             'reference' => 'e7c0b9b44879caa03be4b09b10e7730a8bdbdee5',
     14            'pretty_version' => 'v1.4.1',
     15            'version' => '1.4.1.0',
     16            'reference' => '405acbbdaa55364f8da19a19bc118477ebb6836f',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • disable-admin-notices/trunk/CHANGELOG.md

    r3390608 r3420779  
     1#####   Version 1.4.1 (2025-12-16)
     2
     3- Enhanced security
     4
    15####   Version 1.4.0 (2025-11-05)
    26
  • disable-admin-notices/trunk/disable-admin-notices.php

    r3390608 r3420779  
    55 * Description: Disable admin notices plugin gives you the option to hide updates warnings and inline notices in the admin panel.
    66 * Author: Themeisle
    7  * Version: 1.4.0
     7 * Version: 1.4.1
    88 * Text Domain: disable-admin-notices
    99 * Domain Path: /languages/
  • disable-admin-notices/trunk/libs/factory/core/includes/class-factory-migrations.php

    r3390608 r3420779  
    7777    public function check_migrations() {
    7878        if ( $this->is_migration_error() && isset( $_GET['wbcr_factory_fix_migration_error'] ) ) {
    79             $this->fix_migration_error();
    80             wp_safe_redirect( esc_url_raw(remove_query_arg( 'wbcr_factory_fix_migration_error' )) );
    81             die();
     79            if ( isset( $_GET['nonce'] ) && ! empty( $_GET['nonce'] ) && wp_verify_nonce( $_GET['nonce'], 'wbcr_han_fix_migration_error' ) ) {
     80                $this->fix_migration_error();
     81                wp_safe_redirect( esc_url_raw(remove_query_arg( 'wbcr_factory_fix_migration_error' )) );
     82                die();
     83            }
    8284        }
    8385
     
    129131        }
    130132
    131         $fix_migration_error_url = esc_url(add_query_arg( 'wbcr_factory_fix_migration_error', 1 ));
     133        $fix_migration_error_url = esc_url(
     134            add_query_arg(
     135                array(
     136                    'wbcr_factory_fix_migration_error' => 1,
     137                    'nonce'                            => wp_create_nonce( 'wbcr_han_fix_migration_error' ),
     138                ),
     139            )
     140        );
    132141
    133142        $notice_text = $migration_error_text;
  • disable-admin-notices/trunk/readme.txt

    r3416846 r3420779  
    55Tested up to: 6.9
    66Requires PHP: 7.4
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88License: GPLv2
    99
     
    6262
    6363== Changelog ==
     64
     65#####   Version 1.4.1 (2025-12-16)
     66
     67- Enhanced security
     68
     69
     70
    6471
    6572####   Version 1.4.0 (2025-11-05)
  • disable-admin-notices/trunk/vendor/composer/installed.php

    r3390608 r3420779  
    22    'root' => array(
    33        'name' => 'codeinwp/disable-admin-notices',
    4         'pretty_version' => 'dev-main',
    5         'version' => 'dev-main',
    6         'reference' => 'e7c0b9b44879caa03be4b09b10e7730a8bdbdee5',
     4        'pretty_version' => 'v1.4.1',
     5        'version' => '1.4.1.0',
     6        'reference' => '405acbbdaa55364f8da19a19bc118477ebb6836f',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'codeinwp/disable-admin-notices' => array(
    14             'pretty_version' => 'dev-main',
    15             'version' => 'dev-main',
    16             'reference' => 'e7c0b9b44879caa03be4b09b10e7730a8bdbdee5',
     14            'pretty_version' => 'v1.4.1',
     15            'version' => '1.4.1.0',
     16            'reference' => '405acbbdaa55364f8da19a19bc118477ebb6836f',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.