diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-07 16:24:05 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-01-07 16:24:05 +0100 |
commit | e0bd7e145cb23823c430114f314ffef939877e09 (patch) | |
tree | d8f60010645ebad330174dd4e6ff38a5bf21be2a /lib/base.php | |
parent | fc79662eca5347480d42b107fd7db24287e00aec (diff) | |
download | nextcloud-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.php | 2 |
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; } |