Changeset 48148
- Timestamp:
- 06/23/2020 10:29:00 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/update.php
r48147 r48148 983 983 $next_update_time = wp_next_scheduled( 'wp_version_check' ); 984 984 985 // Check if event exists.985 // Check if the event exists. 986 986 if ( false === $next_update_time ) { 987 987 $message = __( 'Auto-update update not scheduled. There may be a problem with WP-Cron.' ); … … 991 991 // See if cron is overdue. 992 992 $overdue = ( time() - $next_update_time ) > 0; 993 993 994 if ( $overdue ) { 994 995 $message = sprintf( 995 /* translators: Duration that WP-Cron has been overdue. */996 /* translators: %s: Duration that WP-Cron has been overdue. */ 996 997 __( 'Auto-update update overdue by %s. There may be a problem with WP-Cron.' ), 997 998 $time_to_next_update … … 999 1000 } else { 1000 1001 $message = sprintf( 1001 /* translators: Time until the next update. */1002 /* translators: %s: Time until the next update. */ 1002 1003 __( 'Auto-update update scheduled in %s.' ), 1003 1004 $time_to_next_update
Note: See TracChangeset
for help on using the changeset viewer.