aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
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
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')
-rw-r--r--Zotlabs/Module/Chanview.php2
-rw-r--r--Zotlabs/Module/Cloud.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Chanview.php b/Zotlabs/Module/Chanview.php
index 245e71bec..24ab9b022 100644
--- a/Zotlabs/Module/Chanview.php
+++ b/Zotlabs/Module/Chanview.php
@@ -116,7 +116,7 @@ class Chanview extends \Zotlabs\Web\Controller {
);
if($c)
$connected = true;
-
+ }
}
// We will load the chanview template if it's a foreign network,
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();
}