Skip to content

Commit

Permalink
fix(notifications): show correct notification labels
Browse files Browse the repository at this point in the history
fixes #13576
ref #13461, #13504
  • Loading branch information
jeabakker committed Jun 24, 2021
1 parent 8bca339 commit 9a28535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/default/notifications/subscriptions/details.php
Expand Up @@ -44,7 +44,7 @@
$notification_events = elgg_get_notification_events();
foreach ($notification_events as $type => $subtypes) {
foreach ($subtypes as $subtype => $actions) {
foreach ($actions as $action) {
foreach ($actions as $action => $handler) {
echo elgg_view_field([
'#type' => 'checkboxes',
'#label' => elgg_echo("notification:{$type}:{$subtype}:{$action}"),
Expand Down

0 comments on commit 9a28535

Please sign in to comment.