Make WordPress Core


Ignore:
Timestamp:
04/11/2024 09:09:49 PM (10 months ago)
Author:
johnbillion
Message:

General: Increase the minimum supported version of PHP to 7.2.24.

Props justlevine, masteradhoc, samiamnot, hellofromTonya, azaozz, jrf, dd32, desrosj, jorbin

Fixes #58719

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/misc.php

    r57651 r57985  
    16481648    $response['is_lower_than_future_minimum'] = false;
    16491649
    1650     // The minimum supported PHP version will be updated to 7.2. Check if the current version is lower.
    1651     if ( version_compare( $version, '7.2', '<' ) ) {
     1650    // The minimum supported PHP version will be updated to 7.4 in the future. Check if the current version is lower.
     1651    if ( version_compare( $version, '7.4', '<' ) ) {
    16521652        $response['is_lower_than_future_minimum'] = true;
    16531653
Note: See TracChangeset for help on using the changeset viewer.