X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FApp.php;h=3482d1115883ba12ca063c1b507e7242ff1061cf;hb=c4870a16d4ffbd37d6c4f379abfe2d18cacb88ff;hp=10fee0cfc313ba6b38aaeade61a279938f8169b2;hpb=c6c4d93b3b90f92905cec4a3080ab1af6ae742bb;p=friendica.git diff --git a/src/App.php b/src/App.php index 10fee0cfc3..3482d11158 100644 --- a/src/App.php +++ b/src/App.php @@ -64,7 +64,7 @@ class App { const PLATFORM = 'Friendica'; const CODENAME = 'Giant Rhubarb'; - const VERSION = '2023.09-dev'; + const VERSION = '2023.09-rc'; // Allow themes to control internal parameters // by changing App values in theme.php @@ -716,7 +716,7 @@ class App } $this->logger->debug('Request processed sucessfully', ['response' => $response->getStatusCode(), 'address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']); - $page->exit($response); + System::echoResponse($response); } catch (HTTPException $e) { $this->logger->debug('Request processed with exception', ['response' => $e->getCode(), 'address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']); $httpException->rawContent($e);