From abc930c57c02f605229d6caa8f5aedef39d7ee76 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sat, 8 Sep 2012 17:58:59 +0200 Subject: [PATCH] Suppress error message which would send headers for hosted sited where disk_free_space() has been disabled for security. --- lib/filestorage/local.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/filestorage/local.php b/lib/filestorage/local.php index e26d3d3ef91..80aa548047c 100644 --- a/lib/filestorage/local.php +++ b/lib/filestorage/local.php @@ -161,7 +161,7 @@ class OC_Filestorage_Local extends OC_Filestorage_Common{ } public function free_space($path) { - return disk_free_space($this->datadir.$path); + return @disk_free_space($this->datadir.$path); } public function search($query) { -- 2.39.5