Site Health: Check if `session_status()` exists before calling it.

Props bgermann.
Fixes #50862.

git-svn-id: https://develop.svn.wordpress.org/trunk@48742 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-08-06 00:23:13 +00:00
parent 55d73734e4
commit f840046391
2 changed files with 2 additions and 2 deletions

View File

@ -1115,7 +1115,7 @@ class WP_Site_Health {
'test' => 'php_sessions',
);
if ( PHP_SESSION_ACTIVE === session_status() ) {
if ( function_exists( 'session_status' ) && PHP_SESSION_ACTIVE === session_status() ) {
$result['status'] = 'critical';
$result['label'] = __( 'An active PHP session was detected' );

View File

@ -555,7 +555,7 @@ function wp_edit_theme_plugin_file( $args ) {
$url = admin_url();
}
if ( PHP_SESSION_ACTIVE === session_status() ) {
if ( function_exists( 'session_status' ) && PHP_SESSION_ACTIVE === session_status() ) {
// Close any active session to prevent HTTP requests from timing out
// when attempting to connect back to the site.
session_write_close();