1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  [skip ci] Also skip check_default_conf_path.phpt on Windows & 8.2
  Revert "Fix Windows test for openssl-3.5 upgrade (#19384)"
This commit is contained in:
Ilija Tovilo
2025-10-21 01:25:06 +02:00

View File

@@ -21,7 +21,7 @@ ob_end_clean();
preg_match(",Openssl default config [^ ]* (.*),", $info, $m);
if (isset($m[1])) {
var_dump(str_replace('\\/', '\\', strtolower($m[1])));
var_dump(str_replace('/', '\\', strtolower($m[1])));
} else {
echo $info;
}