diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-24 00:36:40 -0700 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-24 00:36:40 -0700 |
commit | 54263624ea9ca6e6211c2aa72ba7dd2015189476 (patch) | |
tree | 66e80e3fad82a91dd402582e08f0a97775a93502 /apps/files | |
parent | 7bb6aab8eea731840d67d5e3aa302c04a593a4e0 (diff) | |
parent | 1a73e607bdba6d654936bde632acaa4960dec729 (diff) | |
download | nextcloud-server-54263624ea9ca6e6211c2aa72ba7dd2015189476.tar.gz nextcloud-server-54263624ea9ca6e6211c2aa72ba7dd2015189476.zip |
Merge pull request #4030 from owncloud/more-themable-strings
More themable strings
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/appinfo/remote.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 6c92cc80b69..a1444141099 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -43,7 +43,8 @@ $server->httpRequest = $requestBackend; $server->setBaseUri($baseuri); // Load plugins -$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, 'ownCloud')); +$defaults = new OC_Defaults(); +$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, $defaults->getName())); $server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend)); $server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin()); |