diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-05-21 14:52:07 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-05-21 14:52:07 +0200 |
commit | b66bacff9f7ea61004ab07f9d3a5c1a216de196d (patch) | |
tree | c1ef6c023c55515f9320adcc60487d7ee217830e | |
parent | 9480e9b68b820aef7cb052491c736a255110a43e (diff) | |
download | volse-hubzilla-b66bacff9f7ea61004ab07f9d3a5c1a216de196d.tar.gz volse-hubzilla-b66bacff9f7ea61004ab07f9d3a5c1a216de196d.tar.bz2 volse-hubzilla-b66bacff9f7ea61004ab07f9d3a5c1a216de196d.zip |
possible better fix for #385
-rw-r--r-- | Zotlabs/Module/Cloud.php | 6 | ||||
-rw-r--r-- | Zotlabs/Storage/Browser.php | 1 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Zotlabs/Module/Cloud.php b/Zotlabs/Module/Cloud.php index f3767e3f0..2784d2703 100644 --- a/Zotlabs/Module/Cloud.php +++ b/Zotlabs/Module/Cloud.php @@ -100,9 +100,13 @@ class Cloud extends \Zotlabs\Web\Controller { // require_once('\Zotlabs\Storage/QuotaPlugin.php'); // $server->addPlugin(new \Zotlabs\Storage\\QuotaPlugin($auth)); + ob_start(); + // All we need to do now, is to fire up the server $server->exec(); - + + ob_end_flush(); + killme(); } diff --git a/Zotlabs/Storage/Browser.php b/Zotlabs/Storage/Browser.php index 355f9efa0..3556f7f06 100644 --- a/Zotlabs/Storage/Browser.php +++ b/Zotlabs/Storage/Browser.php @@ -256,7 +256,6 @@ class Browser extends DAV\Browser\Plugin { $func($a); } } - ob_start(); construct_page($a); } |