Remove @ in order to get proper error handling

This commit is contained in:
Thomas Müller 2014-01-07 16:24:05 +01:00
parent fc79662eca
commit e0bd7e145c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}