mirror of
https://github.com/openvk/openvk
synced 2025-07-07 00:09:48 +03:00
Correctly display the subscriber's role on the subscriber list page
This commit is contained in:
parent
e875a54d7b
commit
41200d8b8f
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@
|
|||
<tr>
|
||||
<td width="120" valign="top"><span class="nobold">{_role}: </span></td>
|
||||
<td>
|
||||
{$manager || $club->getOwner()->getId() == $user->getId() && !$club->isOwnerHidden() || $club->canBeModifiedBy($thisUser) ? tr("administrator") : tr("follower")}
|
||||
{$club->getOwner()->getId() == $user->getId() ? !$club->isOwnerHidden() || $club->canBeModifiedBy($thisUser) : !is_null($manager) ? tr("administrator") : tr("follower")}
|
||||
</td>
|
||||
</tr>
|
||||
<tr n:if="$manager && !empty($manager->getComment()) || $club->getOwner()->getId() === $user->getId() && !empty($club->getOwnerComment()) && (!$club->isOwnerHidden() || $club->canBeModifiedBy($thisUser))">
|
||||
|
|
Loading…
Reference in a new issue