use new obEnd function instead of ob_end_clean

This commit is contained in:
Robin Appelman 2012-11-29 18:01:21 +01:00
parent 59d5aa2cb7
commit bcb27c81d4
5 changed files with 5 additions and 5 deletions

View File

@ -27,7 +27,7 @@ $RUNTIME_APPTYPES=array('filesystem', 'authentication', 'logging');
OC_App::loadApps($RUNTIME_APPTYPES); OC_App::loadApps($RUNTIME_APPTYPES);
ob_end_clean(); OC_Util::obEnd();
// Backends // Backends
$authBackend = new OC_Connector_Sabre_Auth(); $authBackend = new OC_Connector_Sabre_Auth();

View File

@ -44,5 +44,5 @@ header('Content-Disposition: attachment; filename="'.basename($filename).'"');
OCP\Response::disableCaching(); OCP\Response::disableCaching();
header('Content-Length: '.OC_Filesystem::filesize($filename)); header('Content-Length: '.OC_Filesystem::filesize($filename));
@ob_end_clean(); OC_Util::obEnd();
OC_Filesystem::readfile( $filename ); OC_Filesystem::readfile( $filename );

View File

@ -32,7 +32,7 @@ class OC_EventSource{
private $fallBackId=0; private $fallBackId=0;
public function __construct() { public function __construct() {
@ob_end_clean(); OC_Util::obEnd();
header('Cache-Control: no-cache'); header('Cache-Control: no-cache');
$this->fallback=isset($_GET['fallback']) and $_GET['fallback']=='true'; $this->fallback=isset($_GET['fallback']) and $_GET['fallback']=='true';
if($this->fallback) { if($this->fallback) {

View File

@ -195,7 +195,7 @@ class OC_Files {
$zip=false; $zip=false;
$filename=$dir.'/'.$files; $filename=$dir.'/'.$files;
} }
@ob_end_clean(); OC_Util::obEnd();
if($zip or OC_Filesystem::is_readable($filename)) { if($zip or OC_Filesystem::is_readable($filename)) {
header('Content-Disposition: attachment; filename="'.basename($filename).'"'); header('Content-Disposition: attachment; filename="'.basename($filename).'"');
header('Content-Transfer-Encoding: binary'); header('Content-Transfer-Encoding: binary');

View File

@ -195,7 +195,7 @@ class OC_FilesystemView {
return $this->basicOperation('filesize', $path); return $this->basicOperation('filesize', $path);
} }
public function readfile($path) { public function readfile($path) {
@ob_end_clean(); OC_Util::obEnd();
$handle=$this->fopen($path, 'rb'); $handle=$this->fopen($path, 'rb');
if ($handle) { if ($handle) {
$chunkSize = 8192;// 8 MB chunks $chunkSize = 8192;// 8 MB chunks