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:
authorRobin McCorkell <rmccorkell@owncloud.com>2015-09-16 12:47:46 +0300
committerRobin McCorkell <rmccorkell@owncloud.com>2015-09-16 12:48:03 +0300
commit862afd80b36b64262dcce03f15886d81b88080ae (patch)
tree1348fb27121320b69f3948535591cd1c02c2e7a4 /lib/autoloader.php
parent41e79675c3f2409df13a2b06f0ad9d55fa0ec5ad (diff)
Restore loadApp() autoload registration
Also changes the autoloader validRoots into a hashmap to try and reduce duplicate entries
Diffstat (limited to 'lib/autoloader.php')
-rw-r--r--lib/autoloader.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php
index 41a040b3f54..8361f31b038 100644
--- a/lib/autoloader.php
+++ b/lib/autoloader.php
@@ -51,7 +51,9 @@ class Autoloader {
* @param string[] $validRoots
*/
public function __construct(array $validRoots) {
- $this->validRoots = $validRoots;
+ foreach ($validRoots as $root) {
+ $this->validRoots[$root] = true;
+ }
}
/**
@@ -60,7 +62,8 @@ class Autoloader {
* @param string $root
*/
public function addValidRoot($root) {
- $this->validRoots[] = stream_resolve_include_path($root);
+ $root = stream_resolve_include_path($root);
+ $this->validRoots[$root] = true;
}
/**
@@ -126,7 +129,7 @@ class Autoloader {
}
protected function isValidPath($fullPath) {
- foreach ($this->validRoots as $root) {
+ foreach ($this->validRoots as $root => $true) {
if (substr($fullPath, 0, strlen($root) + 1) === $root . '/') {
return true;
}