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.

This commit is contained in:
zotlabs 2017-06-25 19:17:05 -07:00
parent c456e01219
commit 28a1be4d36
2 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ class Chanview extends \Zotlabs\Web\Controller {
); );
if($c) if($c)
$connected = true; $connected = true;
}
} }
// We will load the chanview template if it's a foreign network, // We will load the chanview template if it's a foreign network,

View File

@ -86,11 +86,11 @@ 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(); // 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(); // ob_end_flush();
killme(); killme();
} }