PHPVersionCheck: Mark PHP 7.4.0 - 7.4.2 as buggy

Follows-up f28578f9da, which removed the "7.4.0 - 7.4.8" bad
range.

Bug: T246594
Change-Id: I04c33d95aa07c4234fcf4d80ed2dfeccdf579fdd
This commit is contained in:
Reedy 2021-10-12 21:16:59 +01:00 committed by Krinkle
parent 62d75eae0b
commit 4f3570f7d8

View file

@ -95,6 +95,8 @@ class PHPVersionCheck {
*/
$knownBad = array(
'CVE-2019-11048' => '7.3.0 - 7.3.18',
// https://bugs.php.net/bug.php?id=79174 as a regression from https://bugs.php.net/bug.php?id=78929
'T243667, T291127' => '7.4.0 - 7.4.2'
);
$passes = version_compare( PHP_VERSION, $minimumVersion, '>=' );