summaryrefslogtreecommitdiffstats
path: root/lib/base.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-01-07 16:24:05 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-01-07 16:24:05 +0100
commite0bd7e145cb23823c430114f314ffef939877e09 (patch)
treed8f60010645ebad330174dd4e6ff38a5bf21be2a /lib/base.php
parentfc79662eca5347480d42b107fd7db24287e00aec (diff)
downloadnextcloud-server-e0bd7e145cb23823c430114f314ffef939877e09.tar.gz
nextcloud-server-e0bd7e145cb23823c430114f314ffef939877e09.zip
Remove @ in order to get proper error handling
Diffstat (limited to 'lib/base.php')
-rw-r--r--lib/base.php2
1 files changed, 1 insertions, 1 deletions
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;
}