possible better fix for #385

This commit is contained in:
Mario Vavti 2016-05-21 14:52:07 +02:00
parent 9480e9b68b
commit b66bacff9f
2 changed files with 5 additions and 2 deletions

View File

@ -100,9 +100,13 @@ class Cloud extends \Zotlabs\Web\Controller {
// require_once('\Zotlabs\Storage/QuotaPlugin.php'); // require_once('\Zotlabs\Storage/QuotaPlugin.php');
// $server->addPlugin(new \Zotlabs\Storage\\QuotaPlugin($auth)); // $server->addPlugin(new \Zotlabs\Storage\\QuotaPlugin($auth));
ob_start();
// All we need to do now, is to fire up the server // All we need to do now, is to fire up the server
$server->exec(); $server->exec();
ob_end_flush();
killme(); killme();
} }

View File

@ -256,7 +256,6 @@ class Browser extends DAV\Browser\Plugin {
$func($a); $func($a);
} }
} }
ob_start();
construct_page($a); construct_page($a);
} }