diff options
author | Louis Chemineau <louis@chmn.me> | 2024-09-17 17:32:33 +0200 |
---|---|---|
committer | Louis <louis@chmn.me> | 2024-10-08 18:14:26 +0200 |
commit | 3c7bb63cd3d232f7c9c68de30bf073048a53dc72 (patch) | |
tree | ee39a48d4bed063f3270491ed23d16321e098ec6 /apps | |
parent | e4eb90c52205d58310babd415d351ccb4b4c5487 (diff) | |
download | nextcloud-server-3c7bb63cd3d232f7c9c68de30bf073048a53dc72.tar.gz nextcloud-server-3c7bb63cd3d232f7c9c68de30bf073048a53dc72.zip |
fix: Drop unnecessary exit
Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'apps')
-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 d918da4fab3..9f834cfbcb5 100644 --- a/apps/dav/lib/Files/ErrorPagePlugin.php +++ b/apps/dav/lib/Files/ErrorPagePlugin.php @@ -109,7 +109,6 @@ class ErrorPagePlugin extends ServerPlugin { */ public function sendResponse() { $this->server->sapi->sendResponse($this->server->httpResponse); - exit(); } private function acceptHtml(): bool { |