Changeset 48746
- Timestamp:
- 08/07/2020 01:41:55 PM (4 years ago)
- Location:
- branches/5.5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.5
-
branches/5.5/src/wp-admin/includes/class-wp-site-health.php
r48608 r48746 1116 1116 ); 1117 1117 1118 if ( PHP_SESSION_ACTIVE === session_status() ) {1118 if ( function_exists( 'session_status' ) && PHP_SESSION_ACTIVE === session_status() ) { 1119 1119 $result['status'] = 'critical'; 1120 1120 -
branches/5.5/src/wp-admin/includes/file.php
r48657 r48746 556 556 } 557 557 558 if ( PHP_SESSION_ACTIVE === session_status() ) {558 if ( function_exists( 'session_status' ) && PHP_SESSION_ACTIVE === session_status() ) { 559 559 // Close any active session to prevent HTTP requests from timing out 560 560 // when attempting to connect back to the site.
Note: See TracChangeset
for help on using the changeset viewer.