From d1ea64cab2fdc1bfa9eb60843b8e027d457897b3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Tue, 31 May 2022 15:50:13 +0200 Subject: [PATCH] Fix code style see 598b72301a2cdcd0f3a0c1196f6fc1107e01650e --- .../install/files/lib/system/request/RequestHandler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/request/RequestHandler.class.php b/wcfsetup/install/files/lib/system/request/RequestHandler.class.php index 2fd82b5e94..58b13b7bca 100644 --- a/wcfsetup/install/files/lib/system/request/RequestHandler.class.php +++ b/wcfsetup/install/files/lib/system/request/RequestHandler.class.php @@ -132,7 +132,7 @@ class RequestHandler extends SingletonFactory return; } - if (!(70200 <= PHP_VERSION_ID && PHP_VERSION_ID <= 80099)) { + if (!(70200 <= \PHP_VERSION_ID && \PHP_VERSION_ID <= 80099)) { \header('HTTP/1.1 500 Internal Server Error'); throw new NamedUserException(WCF::getLanguage()->get('wcf.global.incompatiblePhpVersion')); -- 2.20.1