]> git.mxchange.org Git - friendica.git/blobdiff - src/App.php
Merge branch '2023.09-rc' into move-mentionbutton-to-navbar
[friendica.git] / src / App.php
index 10fee0cfc313ba6b38aaeade61a279938f8169b2..3482d1115883ba12ca063c1b507e7242ff1061cf 100644 (file)
@@ -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);