fixing error in initialization of TagManager

remotes/origin/stable6
Thomas Müller 11 years ago
parent 687ba053b7
commit adff34cb8a
  1. 2
      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

Loading…
Cancel
Save