summaryrefslogtreecommitdiffstats
path: root/apps/dav/lib
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-11-14 10:37:47 +0100
committerBackportbot <backportbot-noreply@rullzer.com>2018-11-22 16:20:47 +0000
commit59c379bc5e0c369bed908e8dc8cd2d2a8d3bba9d (patch)
tree8f9cb8686d37e4d4be665752c1c7c29c751c7743 /apps/dav/lib
parenta966d7f9caeb3116024454ec44c45923ada85ad7 (diff)
downloadnextcloud-server-59c379bc5e0c369bed908e8dc8cd2d2a8d3bba9d.tar.gz
nextcloud-server-59c379bc5e0c369bed908e8dc8cd2d2a8d3bba9d.zip
Load apps that have a dav type set before the dav server plugins
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/dav/lib')
-rw-r--r--apps/dav/lib/AppInfo/PluginManager.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/dav/lib/AppInfo/PluginManager.php b/apps/dav/lib/AppInfo/PluginManager.php
index 59b03f54fd0..a5c397326b2 100644
--- a/apps/dav/lib/AppInfo/PluginManager.php
+++ b/apps/dav/lib/AppInfo/PluginManager.php
@@ -103,9 +103,6 @@ class PluginManager {
if (!isset($info['types']) || !in_array('dav', $info['types'], true)) {
continue;
}
- // FIXME: switch to public API once available
- // load app to make sure its classes are available
- \OC_App::loadApp($app);
$this->loadSabrePluginsFromInfoXml($this->extractPluginList($info));
$this->loadSabreCollectionsFromInfoXml($this->extractCollectionList($info));
}