Opened 2 weeks ago
Last modified 2 weeks ago
#62542 new defect (bug)
TypeError in class-wp-plugins-list-table.php due to invalid $time value.
Reported by: | azora | Owned by: | |
---|---|---|---|
Milestone: | Awaiting Review | Priority: | normal |
Severity: | critical | Version: | 6.7.1 |
Component: | Plugins | Keywords: | has-patch |
Focuses: | administration | Cc: |
Description (last modified by )
A fatal error occurred due to the latest update and is causing problems in the database. Even after I disabled all plugins and installed older wordpress versions, the problem remains due to the cron.
[22-Nov-2024 22:43:55 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>astra</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /.../wp-includes/functions.php on line 6114 [22-Nov-2024 22:43:55 UTC] PHP Notice: Function _load_textdomain_just_in_time was called <strong>incorrectly</strong>. Translation loading for the <code>astra</code> domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the <code>init</code> action or later. Please see <a href="https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/">Debugging in WordPress</a> for more information. (This message was added in version 6.7.0.) in /.../wp-includes/functions.php on line 6114 [22-Nov-2024 22:43:55 UTC] PHP Fatal error: Uncaught TypeError: Unsupported operand types: string + int in /.../wp-admin/includes/class-wp-plugins-list-table.php:189 Stack trace: #0 /.../wp-admin/plugins.php(553): WP_Plugins_List_Table->prepare_items() #1 {main} thrown in /.../wp-admin/includes/class-wp-plugins-list-table.php on line 189
The error comes from this function:
foreach ( $recently_activated as $key => $time ) { if ( $time + WEEK_IN_SECONDS < time() ) { unset( $recently_activated[ $key ] ); } }
My correction:
foreach ( $recently_activated as $key => $time ) { if ( (int) $time + WEEK_IN_SECONDS < time() ) { unset( $recently_activated[ $key ] ); } }
The problem has been fixed for me.
Change History (5)
#1
@
2 weeks ago
- Component changed from General to Plugins
- Description modified (diff)
- Focuses administration added
This ticket was mentioned in PR #7875 on WordPress/wordpress-develop by @umeshsinghin.
2 weeks ago
#2
- Keywords has-patch added; needs-patch removed
Note: See
TracTickets for help on using
tickets.
https://core.trac.wordpress.org/ticket/62542