Browse Source

Add autoloader before enabling apps

Else apps that require already autoloading in the installer
(files_antivius) die hard!

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/2148/head
Roeland Jago Douma 10 years ago
parent
commit
d826e04757
No known key found for this signature in database GPG Key ID: F941078878347C0C
  1. 2
      lib/private/legacy/app.php

2
lib/private/legacy/app.php

@ -364,6 +364,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…
Cancel
Save