diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-09-18 10:42:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-18 10:42:09 +0200 |
commit | cd3256bf5445c4f2b20af345ab48485f21a45bfe (patch) | |
tree | a9df3bcbd3c27b95dcc5d3c80814b9574a0b873d /apps/dav | |
parent | 29a03ff8fea1e457fe6c3eb0dab29c2b329dc9b5 (diff) | |
parent | 4e75a3c55c56b575b4541db3f069a845f6ef3c72 (diff) | |
download | nextcloud-server-cd3256bf5445c4f2b20af345ab48485f21a45bfe.tar.gz nextcloud-server-cd3256bf5445c4f2b20af345ab48485f21a45bfe.zip |
Merge pull request #48145 from nextcloud/artonge/fix/drop_unecessary_exit
fix: Drop unnecessary exit
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 { |