With the first Alpha of PHP 8.3 now released, compatibility testing can begin
and this requires that the frontend is actually available.
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'),