mirror of
https://github.com/friendica/friendica
synced 2025-04-25 15:10:13 +00:00
Store the tag type for the post targets
This commit is contained in:
parent
1c0c787d1c
commit
060597f619
8 changed files with 96 additions and 24 deletions
|
@ -200,6 +200,8 @@ class PermissionTooltip extends \Friendica\BaseModule
|
|||
$receivers[$receiver['type']][] = DI::l10n()->t('Followers (%s)', $apcontact['name']);
|
||||
} elseif ($apcontact = APContact::getByURL($receiver['url'], false)) {
|
||||
$receivers[$receiver['type']][] = $apcontact['name'];
|
||||
} elseif ($receiver['tag-type'] == Tag::COLLECTION) {
|
||||
$receivers[$receiver['type']][] = DI::l10n()->t('Collection (%s)', $receiver['name']);
|
||||
} else {
|
||||
$receivers[$receiver['type']][] = $receiver['name'];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue