diff options
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r-- | apps/files/appinfo/info.xml | 3 | ||||
-rw-r--r-- | apps/files/appinfo/remote.php | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/apps/files/appinfo/info.xml b/apps/files/appinfo/info.xml index 76a06a0cb4b..92d0a50814e 100644 --- a/apps/files/appinfo/info.xml +++ b/apps/files/appinfo/info.xml @@ -8,6 +8,9 @@ <require>2</require> <standalone/> <default_enable/> + <types> + <filesystem/> + </types> <remote> <files>appinfo/remote.php</files> <webdav>appinfo/remote.php</webdav> diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 465e0c0a935..b66843556bb 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -24,6 +24,7 @@ */ // only need filesystem apps $RUNTIME_APPTYPES=array('filesystem','authentication'); +OC_App::loadApps($RUNTIME_APPTYPES); // Backends $authBackend = new OC_Connector_Sabre_Auth(); |