summaryrefslogtreecommitdiffstats
path: root/apps/admin_export
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-10-17 01:18:02 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-10-17 01:18:02 +0200
commit595b13f1e03a4300beee1396333a4b4337337df5 (patch)
tree29b420298e4ec82d0c5909567edae32c9bd2e34e /apps/admin_export
parent77378fa1893267bbdd6ee2f7805a34c1d5b0977b (diff)
downloadnextcloud-server-595b13f1e03a4300beee1396333a4b4337337df5.tar.gz
nextcloud-server-595b13f1e03a4300beee1396333a4b4337337df5.zip
prevent the remaining ob_clean related errors
Diffstat (limited to 'apps/admin_export')
-rw-r--r--apps/admin_export/settings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/admin_export/settings.php b/apps/admin_export/settings.php
index 1685e5c0ca1..cf1daa250f7 100644
--- a/apps/admin_export/settings.php
+++ b/apps/admin_export/settings.php
@@ -63,7 +63,7 @@ if (isset($_POST['admin_export'])) {
header("Content-Type: application/zip");
header("Content-Disposition: attachment; filename=" . basename($filename));
header("Content-Length: " . filesize($filename));
- ob_end_clean();
+ @ob_end_clean();
readfile($filename);
unlink($filename);
} else {