Merge pull request #19086 from owncloud/restore-loadapp-autoload

Restore loadApp() autoload registration
This commit is contained in:
Thomas Müller 2015-09-16 15:19:41 +02:00
commit a1e343ae7c
2 changed files with 7 additions and 3 deletions

View File

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

View File

@ -131,6 +131,7 @@ class OC_App {
*/
public static function loadApp($app, $checkUpgrade = true) {
self::$loadedApps[] = $app;
\OC::$loader->addValidRoot(self::getAppPath($app)); // in case someone calls loadApp() directly
if (is_file(self::getAppPath($app) . '/appinfo/app.php')) {
\OC::$server->getEventLogger()->start('load_app_' . $app, 'Load app: ' . $app);
if ($checkUpgrade and self::shouldUpgrade($app)) {