aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Cloud.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-06-25 19:17:05 -0700
committerzotlabs <mike@macgirvin.com>2017-06-25 19:17:05 -0700
commit28a1be4d36bf0ec54d053bb9decbe619361682cb (patch)
treeb9bdac9fe190200703692044770eb94a49aac3da /Zotlabs/Module/Cloud.php
parentc456e01219bf535582744d5210b2b096985aa05d (diff)
downloadvolse-hubzilla-28a1be4d36bf0ec54d053bb9decbe619361682cb.tar.gz
volse-hubzilla-28a1be4d36bf0ec54d053bb9decbe619361682cb.tar.bz2
volse-hubzilla-28a1be4d36bf0ec54d053bb9decbe619361682cb.zip
typo in chanview, remove output buffering in mod_cloud which is preventing large files from being downloaded. IIRC this was put there to avoid a SAML warning in SabreDAV but I'm not seeing that currently.
Diffstat (limited to 'Zotlabs/Module/Cloud.php')
-rw-r--r--Zotlabs/Module/Cloud.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Cloud.php b/Zotlabs/Module/Cloud.php
index 7370eeda3..01f1061df 100644
--- a/Zotlabs/Module/Cloud.php
+++ b/Zotlabs/Module/Cloud.php
@@ -86,11 +86,11 @@ class Cloud extends \Zotlabs\Web\Controller {
// require_once('\Zotlabs\Storage/QuotaPlugin.php');
// $server->addPlugin(new \Zotlabs\Storage\\QuotaPlugin($auth));
- ob_start();
+// ob_start();
// All we need to do now, is to fire up the server
$server->exec();
- ob_end_flush();
+// ob_end_flush();
killme();
}