Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-10-17 03:18:02 +0400
committerRobin Appelman <icewind1991@gmail.com>2011-10-17 03:18:02 +0400
commit595b13f1e03a4300beee1396333a4b4337337df5 (patch)
tree29b420298e4ec82d0c5909567edae32c9bd2e34e /ocs/v1.php
parent77378fa1893267bbdd6ee2f7805a34c1d5b0977b (diff)
prevent the remaining ob_clean related errors
Diffstat (limited to 'ocs/v1.php')
-rw-r--r--ocs/v1.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/ocs/v1.php b/ocs/v1.php
index b5eb460664c..f5ff6cb6054 100644
--- a/ocs/v1.php
+++ b/ocs/v1.php
@@ -22,7 +22,7 @@
*/
require_once('../lib/base.php');
-ob_clean();
+@ob_clean();
OC_OCS::handle();
?>