diff options
author | Christopher Ng <chrng8@gmail.com> | 2021-10-25 22:20:19 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2021-10-25 22:20:19 +0000 |
commit | 9f8eae3f50d61e2bbe849ce2e9a15a6567a65706 (patch) | |
tree | c59dd5c84d7b168458dd6ba9df3bd80eea2c4752 /lib/private/Profile | |
parent | 9177afe8ab6d81fc719775c1b85643fcf28097b5 (diff) | |
download | nextcloud-server-9f8eae3f50d61e2bbe849ce2e9a15a6567a65706.tar.gz nextcloud-server-9f8eae3f50d61e2bbe849ce2e9a15a6567a65706.zip |
Use more explicit naming for profile link action
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'lib/private/Profile')
-rw-r--r-- | lib/private/Profile/ProfileManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Profile/ProfileManager.php b/lib/private/Profile/ProfileManager.php index e0c619725e7..bf974e98e0f 100644 --- a/lib/private/Profile/ProfileManager.php +++ b/lib/private/Profile/ProfileManager.php @@ -168,7 +168,7 @@ class ProfileManager { $this->registerAction($targetUser, $visitingUser, $provider); } - foreach ($context->getProfileActions() as $registration) { + foreach ($context->getProfileLinkActions() as $registration) { /** @var ILinkAction $provider */ $provider = $this->container->get($registration->getService()); $this->registerAction($targetUser, $visitingUser, $provider); |