Changeset 52663 for branches/5.9/src/wp-admin/includes/upgrade.php
- Timestamp:
- 02/02/2022 11:24:40 PM (3 years ago)
- Location:
- branches/5.9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.9
- Property svn:mergeinfo changed
/trunk merged: 52656,52662
- Property svn:mergeinfo changed
-
branches/5.9/src/wp-admin/includes/upgrade.php
r52462 r52663 2270 2270 if ( $wp_current_db_version < 51917 ) { 2271 2271 $crons = _get_cron_array(); 2272 // Remove errant `false` values, see #53950. 2273 $crons = array_filter( $crons ); 2274 _set_cron_array( $crons ); 2272 2273 if ( $crons && is_array( $crons ) ) { 2274 // Remove errant `false` values, see #53950, #54906. 2275 $crons = array_filter( $crons ); 2276 _set_cron_array( $crons ); 2277 } 2275 2278 } 2276 2279 }
Note: See TracChangeset
for help on using the changeset viewer.