Changeset 58128 for trunk/src/wp-includes/load.php
- Timestamp:
- 05/10/2024 11:46:51 AM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/load.php
r57831 r58128 419 419 if ( ( time() - $upgrading ) >= 10 * MINUTE_IN_SECONDS ) { 420 420 return false; 421 } 422 423 // Don't enable maintenance mode while scraping for fatal errors. 424 if ( is_int( $upgrading ) && isset( $_REQUEST['wp_scrape_key'], $_REQUEST['wp_scrape_nonce'] ) ) { 425 $key = stripslashes( $_REQUEST['wp_scrape_key'] ); 426 $nonce = stripslashes( $_REQUEST['wp_scrape_nonce'] ); 427 428 if ( md5( $upgrading ) === $key && (int) $nonce === $upgrading ) { 429 return false; 430 } 421 431 } 422 432
Note: See TracChangeset
for help on using the changeset viewer.