summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-27 17:08:48 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-27 17:08:48 +0200
commitadff34cb8a7c2e2a6046e4fe28da3a77cd6492ca (patch)
tree7daa5e98a0350dee0ad579932206ab7f6b7a04ce /lib
parent687ba053b7055900dc938da5b82b6d391b0b4318 (diff)
downloadnextcloud-server-adff34cb8a7c2e2a6046e4fe28da3a77cd6492ca.tar.gz
nextcloud-server-adff34cb8a7c2e2a6046e4fe28da3a77cd6492ca.zip
fixing error in initialization of TagManager
Diffstat (limited to 'lib')
-rw-r--r--lib/server.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/server.php b/lib/server.php
index 2391952ea6b..cabb15324ec 100644
--- a/lib/server.php
+++ b/lib/server.php
@@ -51,7 +51,7 @@ class Server extends SimpleContainer implements IServerContainer {
});
$this->registerService('TagManager', function($c) {
$user = \OC_User::getUser();
- return new Tags($user);
+ return new TagManager($user);
});
$this->registerService('RootFolder', function($c) {
// TODO: get user and user manager from container as well