From e0bd7e145cb23823c430114f314ffef939877e09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 7 Jan 2014 16:24:05 +0100 Subject: [PATCH] Remove @ in order to get proper error handling --- lib/base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index cf1ffc01771..a8e9e901847 100644 --- a/lib/base.php +++ b/lib/base.php @@ -479,7 +479,7 @@ class OC { // setup 3rdparty autoloader $vendorAutoLoad = OC::$THIRDPARTYROOT . '/3rdparty/autoload.php'; - if (@file_exists($vendorAutoLoad)) { + if (file_exists($vendorAutoLoad)) { require_once $vendorAutoLoad; }