summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Douma <rullzer@users.noreply.github.com>2016-04-06 13:31:05 +0200
committerRoeland Douma <rullzer@users.noreply.github.com>2016-04-06 13:31:05 +0200
commit7ed271b16870cf31c9fa26e3d045181cd805d9b0 (patch)
tree1ebb63af2eed1732408f413587750f4ce554de42 /lib
parente2ea289943b3ec26da9fa7d8332307a54a2c6790 (diff)
parent5a0c936f99668fe5db0ffef8c76384ae0fe7fe52 (diff)
downloadnextcloud-server-7ed271b16870cf31c9fa26e3d045181cd805d9b0.tar.gz
nextcloud-server-7ed271b16870cf31c9fa26e3d045181cd805d9b0.zip
Merge pull request #23820 from owncloud/move-settings-completely-to-psr4
Move OC/Settings completely to PSR-4
Diffstat (limited to 'lib')
-rw-r--r--lib/autoloader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php
index 87a07f6da12..9e198a0351e 100644
--- a/lib/autoloader.php
+++ b/lib/autoloader.php
@@ -112,7 +112,7 @@ class Autoloader {
if ($split[1] === 'core') {
$paths[] = \OC::$SERVERROOT . '/core/' . strtolower(str_replace('\\', '/', $split[2])) . '.php';
} else if ($split[1] === 'settings') {
- $paths[] = \OC::$SERVERROOT . '/settings/' . strtolower(str_replace('\\', '/', $split[2])) . '.php';
+ // Covered by PSR-4 autoloader
} else {
$paths[] = \OC::$SERVERROOT . '/lib/private/' . $split[1] . '/' . strtolower(str_replace('\\', '/', $split[2])) . '.php';
}