diff options
author | Björn Schießle <schiessle@owncloud.com> | 2012-10-31 14:12:09 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-11-01 00:20:43 +0100 |
commit | 3878950af4729e5249d64f0a7ac78dac21838e26 (patch) | |
tree | 021098891af4b95c482ebf021999d0b845bdba8d /apps | |
parent | a327087c8be37eeacb6e0da2d0041abe281dc7fa (diff) | |
download | nextcloud-server-3878950af4729e5249d64f0a7ac78dac21838e26.tar.gz nextcloud-server-3878950af4729e5249d64f0a7ac78dac21838e26.zip |
load logging apps for webdav connections
Backport of de1b95c
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/appinfo/filesync.php | 2 | ||||
-rw-r--r-- | apps/files/appinfo/remote.php | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/appinfo/filesync.php b/apps/files/appinfo/filesync.php index c1fe444cec7..a21dcbd78a0 100644 --- a/apps/files/appinfo/filesync.php +++ b/apps/files/appinfo/filesync.php @@ -21,7 +21,7 @@ */ // only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem','authentication'); +$RUNTIME_APPTYPES=array('filesystem','authentication','logging'); OC_App::loadApps($RUNTIME_APPTYPES); if(!OC_User::isLoggedIn()) { if(!isset($_SERVER['PHP_AUTH_USER'])) { diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index ecabe8621dd..0f8a147bb10 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -23,7 +23,8 @@ * */ // only need filesystem apps -$RUNTIME_APPTYPES=array('filesystem', 'authentication'); +$RUNTIME_APPTYPES=array('filesystem','authentication','logging'); + OC_App::loadApps($RUNTIME_APPTYPES); // Backends |