Changeset 52656 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 02/01/2022 12:12:33 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r52456 r52656 2274 2274 if ( $wp_current_db_version < 51917 ) { 2275 2275 $crons = _get_cron_array(); 2276 // Remove errant `false` values, see #53950. 2277 $crons = array_filter( $crons ); 2278 _set_cron_array( $crons ); 2276 2277 if ( $crons && is_array( $crons ) ) { 2278 // Remove errant `false` values, see #53950. 2279 $crons = array_filter( $crons ); 2280 _set_cron_array( $crons ); 2281 } 2279 2282 } 2280 2283 }
Note: See TracChangeset
for help on using the changeset viewer.