diff options
author | Louis Chemineau <louis@chmn.me> | 2024-09-17 17:32:33 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2024-09-19 13:59:08 +0200 |
commit | 337df1f7600c32c91543dcfef9d476b4f49e85cc (patch) | |
tree | e418d5eabb7de8d9f3c86d73105d00495d63458e | |
parent | 406e74fae72665ad231678d02809fe7b9fda89af (diff) | |
download | nextcloud-server-337df1f7600c32c91543dcfef9d476b4f49e85cc.tar.gz nextcloud-server-337df1f7600c32c91543dcfef9d476b4f49e85cc.zip |
fix: Drop unnecessary exit
Signed-off-by: Louis Chemineau <louis@chmn.me>
-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 { |