#62542 closed defect (bug) (fixed)
TypeError in class-wp-plugins-list-table.php due to invalid $time value.
| Reported by: | azora | Owned by: | SergeyBiryukov |
|---|---|---|---|
| Priority: | normal | Milestone: | 7.0 |
| Component: | Plugins | Version: | 6.7.1 |
| Severity: | critical | Keywords: | has-patch |
| Cc: | Focuses: | administration |
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 (7)
#1
@
20 months ago
- Component General → Plugins
- Description modified (diff)
- Focuses administration added
This ticket was mentioned in PR #7875 on WordPress/wordpress-develop by @umeshsinghin.
20 months ago
#2
- Keywords has-patch added; needs-patch removed
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
https://core.trac.wordpress.org/ticket/62542