mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Merge pull request #2148 from nextcloud/add_autoloader_before_enabling
Add autoloader before enabling apps
This commit is contained in:
commit
d03446a0ae
1 changed files with 2 additions and 0 deletions
|
|
@ -381,6 +381,8 @@ class OC_App {
|
|||
// check for required dependencies
|
||||
$info = self::getAppInfo($appId);
|
||||
self::checkAppDependencies($config, $l, $info);
|
||||
$appPath = self::getAppPath($appId);
|
||||
self::registerAutoloading($appId, $appPath);
|
||||
$installer->installApp($appId);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue