From 2a40fb2597193c0ad687933898f2bc5e208c7044 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Fri, 9 Jun 2023 10:36:55 +0200 Subject: [PATCH] Allow PHP 8.3 in CheckSystemEnvironment for testing purposes With the first Alpha of PHP 8.3 now released, compatibility testing can begin and this requires that the frontend is actually available. --- .../files/lib/http/middleware/CheckSystemEnvironment.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/http/middleware/CheckSystemEnvironment.class.php b/wcfsetup/install/files/lib/http/middleware/CheckSystemEnvironment.class.php index 525b810791..bdf8b11e5f 100644 --- a/wcfsetup/install/files/lib/http/middleware/CheckSystemEnvironment.class.php +++ b/wcfsetup/install/files/lib/http/middleware/CheckSystemEnvironment.class.php @@ -27,7 +27,7 @@ final class CheckSystemEnvironment implements MiddlewareInterface public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { if (!RequestHandler::getInstance()->isACPRequest()) { - if (!(80100 <= \PHP_VERSION_ID && \PHP_VERSION_ID <= 80299)) { + if (!(80100 <= \PHP_VERSION_ID && \PHP_VERSION_ID <= 80300)) { return new HtmlResponse( (new HtmlErrorRenderer())->render( WCF::getLanguage()->getDynamicVariable('wcf.global.error.title'), -- 2.20.1