Skip to content

Commit

Permalink
Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
axel committed Feb 2, 2021
1 parent 7a049a7 commit 9c3021e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions View/GrouperGroups/groupmember.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
<td><?php echo isset($group['description']) ? $group['description'] : _txt('pl.grouperlite.value.descr.zerostate'); ?></td>
<td>
<?php echo $group['optedin'] ? $this->element('GrouperLite.Components/optAction', array(
'member' => $group['optedin'],
'leavegroup',
'group' => $group['name']
'member' => $group['optedin'],
'action' => 'leavegroup',
'group' => $group['name']
)) : ''; ?>
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion View/GrouperGroups/groupoptin.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<td>
<?php echo $this->element('GrouperLite.Components/optAction', array(
'member' => $group['member'],
'joingroup',
'action' => 'joingroup',
'group' => $group['name']
)); ?>
</td>
Expand Down

0 comments on commit 9c3021e

Please sign in to comment.