]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove @ in order to get proper error handling
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Jan 2014 15:24:05 +0000 (16:24 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Jan 2014 15:24:05 +0000 (16:24 +0100)
lib/base.php

index cf1ffc01771ee83da20c435a8aad7287a7627060..a8e9e9018477da20e13cae61b5717c3d424963c7 100644 (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;
                }