diff options
author | Louis Chemineau <louis@chmn.me> | 2024-09-17 17:32:33 +0200 |
---|---|---|
committer | Louis Chemineau <louis@chmn.me> | 2024-09-17 17:32:33 +0200 |
commit | d2bf3613f6c9210a720bebdcf82284bbfc604319 (patch) | |
tree | 7eebf66dab0e77ee7d89c69123eb1d87b9c21d8f /apps/dav | |
parent | f25acfb7990bf6d9233e1c3fb8713ea80d388084 (diff) | |
download | nextcloud-server-d2bf3613f6c9210a720bebdcf82284bbfc604319.tar.gz nextcloud-server-d2bf3613f6c9210a720bebdcf82284bbfc604319.zip |
fix: Drop unnecessary exit
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/Files/ErrorPagePlugin.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/dav/lib/Files/ErrorPagePlugin.php b/apps/dav/lib/Files/ErrorPagePlugin.php index ddf04d0f763..2b93f0e7a49 100644 --- a/apps/dav/lib/Files/ErrorPagePlugin.php +++ b/apps/dav/lib/Files/ErrorPagePlugin.php @@ -92,7 +92,6 @@ class ErrorPagePlugin extends ServerPlugin { */ public function sendResponse() { $this->server->sapi->sendResponse($this->server->httpResponse); - exit(); } private function acceptHtml(): bool { |