mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #23976 from nextcloud/enh/reduce_getAppPath_and_autoload_reg
Reduce the getAppPath and autoloader calls
This commit is contained in:
commit
f02bab1425
1 changed files with 6 additions and 3 deletions
|
|
@ -118,9 +118,12 @@ class OC_App {
|
|||
|
||||
// Add each apps' folder as allowed class path
|
||||
foreach ($apps as $app) {
|
||||
$path = self::getAppPath($app);
|
||||
if ($path !== false) {
|
||||
self::registerAutoloading($app, $path);
|
||||
// If the app is already loaded then autoloading it makes no sense
|
||||
if (!isset(self::$loadedApps[$app])) {
|
||||
$path = self::getAppPath($app);
|
||||
if ($path !== false) {
|
||||
self::registerAutoloading($app, $path);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue