diff options
author | icewind1991 <icewind1991@gmail.com> | 2013-07-24 10:11:37 -0700 |
---|---|---|
committer | icewind1991 <icewind1991@gmail.com> | 2013-07-24 10:11:37 -0700 |
commit | 9f01d00c65945a71cbaf09d128946fe8f451e468 (patch) | |
tree | 2d52b5e19231791bb0b7b868c635763dd6ef71e7 | |
parent | 4b8e464f0165b7c32ce9556bb3fb97d6b99604a4 (diff) | |
parent | 79832e9382c14d676dc1f1dc52581f98f9162252 (diff) | |
download | nextcloud-server-9f01d00c65945a71cbaf09d128946fe8f451e468.tar.gz nextcloud-server-9f01d00c65945a71cbaf09d128946fe8f451e468.zip |
Merge pull request #4181 from owncloud/irods-ob
use output buffering when including the irods libraries
-rw-r--r-- | apps/files_external/lib/irods.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_external/lib/irods.php b/apps/files_external/lib/irods.php index ddce8639ff4..a343ac5fb27 100644 --- a/apps/files_external/lib/irods.php +++ b/apps/files_external/lib/irods.php @@ -11,8 +11,10 @@ namespace OC\Files\Storage; set_include_path(get_include_path() . PATH_SEPARATOR . \OC_App::getAppPath('files_external') . '/3rdparty/irodsphp/prods/src'); +ob_start(); require_once 'ProdsConfig.inc.php'; require_once 'ProdsStreamer.class.php'; +ob_end_clean(); class iRODS extends \OC\Files\Storage\StreamWrapper{ private $password; |