Changeset 3420779
- Timestamp:
- 12/16/2025 09:04:17 AM (2 months ago)
- Location:
- disable-admin-notices
- Files:
-
- 10 edited
- 1 copied
-
tags/1.4.1 (copied) (copied from disable-admin-notices/trunk)
-
tags/1.4.1/CHANGELOG.md (modified) (1 diff)
-
tags/1.4.1/disable-admin-notices.php (modified) (1 diff)
-
tags/1.4.1/libs/factory/core/includes/class-factory-migrations.php (modified) (2 diffs)
-
tags/1.4.1/readme.txt (modified) (2 diffs)
-
tags/1.4.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/disable-admin-notices.php (modified) (1 diff)
-
trunk/libs/factory/core/includes/class-factory-migrations.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
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 1 5 #### Version 1.4.0 (2025-11-05) 2 6 -
disable-admin-notices/tags/1.4.1/disable-admin-notices.php
r3390608 r3420779 5 5 * Description: Disable admin notices plugin gives you the option to hide updates warnings and inline notices in the admin panel. 6 6 * Author: Themeisle 7 * Version: 1.4. 07 * Version: 1.4.1 8 8 * Text Domain: disable-admin-notices 9 9 * Domain Path: /languages/ -
disable-admin-notices/tags/1.4.1/libs/factory/core/includes/class-factory-migrations.php
r3390608 r3420779 77 77 public function check_migrations() { 78 78 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 } 82 84 } 83 85 … … 129 131 } 130 132 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 ); 132 141 133 142 $notice_text = $migration_error_text; -
disable-admin-notices/tags/1.4.1/readme.txt
r3416846 r3420779 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 9 9 … … 62 62 63 63 == Changelog == 64 65 ##### Version 1.4.1 (2025-12-16) 66 67 - Enhanced security 68 69 70 64 71 65 72 #### Version 1.4.0 (2025-11-05) -
disable-admin-notices/tags/1.4.1/vendor/composer/installed.php
r3390608 r3420779 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
disable-admin-notices/trunk/CHANGELOG.md
r3390608 r3420779 1 ##### Version 1.4.1 (2025-12-16) 2 3 - Enhanced security 4 1 5 #### Version 1.4.0 (2025-11-05) 2 6 -
disable-admin-notices/trunk/disable-admin-notices.php
r3390608 r3420779 5 5 * Description: Disable admin notices plugin gives you the option to hide updates warnings and inline notices in the admin panel. 6 6 * Author: Themeisle 7 * Version: 1.4. 07 * Version: 1.4.1 8 8 * Text Domain: disable-admin-notices 9 9 * Domain Path: /languages/ -
disable-admin-notices/trunk/libs/factory/core/includes/class-factory-migrations.php
r3390608 r3420779 77 77 public function check_migrations() { 78 78 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 } 82 84 } 83 85 … … 129 131 } 130 132 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 ); 132 141 133 142 $notice_text = $migration_error_text; -
disable-admin-notices/trunk/readme.txt
r3416846 r3420779 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 9 9 … … 62 62 63 63 == Changelog == 64 65 ##### Version 1.4.1 (2025-12-16) 66 67 - Enhanced security 68 69 70 64 71 65 72 #### Version 1.4.0 (2025-11-05) -
disable-admin-notices/trunk/vendor/composer/installed.php
r3390608 r3420779 2 2 'root' => array( 3 3 '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', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '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', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.