summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-11-02 08:22:05 +0100
committerGitHub <noreply@github.com>2018-11-02 08:22:05 +0100
commit2cae91904c14f66aae26b0066a0c8cbfbe9a4c38 (patch)
tree17e9ccc4f87bd6d2325cb71bcd20ff01964b1380 /lib
parent3b5e031e6b193299f0bff2360fef97070e9d37bd (diff)
parent1e2d19ae0d5497c5f13813277b5ab01cec44bbc0 (diff)
downloadnextcloud-server-2cae91904c14f66aae26b0066a0c8cbfbe9a4c38.tar.gz
nextcloud-server-2cae91904c14f66aae26b0066a0c8cbfbe9a4c38.zip
Merge pull request #12194 from nextcloud/fix-path-as-dashboard-is-already-imported
fix path to DashboardManager, as the class is already imported (minor)
Diffstat (limited to 'lib')
-rw-r--r--lib/private/Server.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Server.php b/lib/private/Server.php
index ceecd059df2..204345708b9 100644
--- a/lib/private/Server.php
+++ b/lib/private/Server.php
@@ -1185,7 +1185,7 @@ class Server extends ServerContainer implements IServerContainer {
return new StorageFactory();
});
- $this->registerAlias(IDashboardManager::class, Dashboard\DashboardManager::class);
+ $this->registerAlias(IDashboardManager::class, DashboardManager::class);
$this->registerAlias(IFullTextSearchManager::class, FullTextSearchManager::class);
$this->connectDispatcher();