Changeset 56664 for trunk/src/wp-admin/includes/upgrade.php
- Timestamp:
- 09/22/2023 07:06:45 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/upgrade.php
r56658 r56664 2341 2341 // Enable attachment pages. 2342 2342 update_option( 'wp_attachment_pages_enabled', 1 ); 2343 2344 // Remove the wp_https_detection cron. Https status is checked directly in an async Site Health check. 2345 $scheduled = wp_get_scheduled_event( 'wp_https_detection' ); 2346 if ( $scheduled ) { 2347 wp_clear_scheduled_hook( 'wp_https_detection' ); 2348 } 2343 2349 } 2344 2350 }
Note: See TracChangeset
for help on using the changeset viewer.