Skip to content

Commit

Permalink
Fix followers list in group
Browse files Browse the repository at this point in the history
  • Loading branch information
mrilyew committed Oct 28, 2023
1 parent 1f8f5cf commit 390b4f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Web/Presenters/templates/Group/Followers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<tr>
<td width="120" valign="top"><span class="nobold">{_role}: </span></td>
<td>
{$club->getOwner()->getId() == $user->getId() ? !$club->isOwnerHidden() || $club->canBeModifiedBy($thisUser) : !is_null($manager) ? 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))">
Expand Down

0 comments on commit 390b4f6

Please sign in to comment.