Skip to content

Commit

Permalink
Merge pull request #132 from martinpales/fix-approval-member-email
Browse files Browse the repository at this point in the history
Fix a typo in approval member email
  • Loading branch information
nyeholt authored May 10, 2017
2 parents 977c37d + e8752b3 commit 13a3675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/MemberProfilePage.php
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ protected function addMember($form) {

if ($groups) foreach ($groups as $group) {
foreach ($group->Members() as $_member) {
if ($member->Email) $emails[] = $_member->Email;
if ($_member->Email) $emails[] = $_member->Email;
}
}

Expand Down

0 comments on commit 13a3675

Please sign in to comment.