Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Douma <rullzer@users.noreply.github.com>2016-04-06 14:31:44 +0300
committerRoeland Douma <rullzer@users.noreply.github.com>2016-04-06 14:31:44 +0300
commit93b1768eb78e32539bafdc91af3d397f426b46ba (patch)
tree5df3adc6978daf7d338ac3bc1285655f879c8ae1 /lib/autoloader.php
parent7ed271b16870cf31c9fa26e3d045181cd805d9b0 (diff)
parentc952adabb553ef1ee0a3c8ff6125e0048f750428 (diff)
Merge pull request #23819 from owncloud/move-core-completely-to-psr4
Move OC/Core completely to PSR-4
Diffstat (limited to 'lib/autoloader.php')
-rw-r--r--lib/autoloader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php
index 9e198a0351e..6a427848235 100644
--- a/lib/autoloader.php
+++ b/lib/autoloader.php
@@ -110,7 +110,7 @@ class Autoloader {
$split[1] = strtolower($split[1]);
if ($split[1] === 'core') {
- $paths[] = \OC::$SERVERROOT . '/core/' . strtolower(str_replace('\\', '/', $split[2])) . '.php';
+ // Covered by PSR-4 autoloader
} else if ($split[1] === 'settings') {
// Covered by PSR-4 autoloader
} else {