Skip to content

Commit

Permalink
Fix notification message about updated event
Browse files Browse the repository at this point in the history
  • Loading branch information
yurabakhtin committed Aug 23, 2024
1 parent a3c46be commit 303a4e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Changelog
- Fix #477: Hide the settings button when module is not available for a container
- Enh #466: Fix period selector on default reminder settings
- Fix: Add autofocus on event edit and event type edit (for HumHub 1.17 - see https://github.com/humhub/humhub/issues/7136)
- Fix #500: Fix notification message about updated event

1.6.2 (July 16, 2024)
---------------------
Expand Down
2 changes: 1 addition & 1 deletion notifications/EventUpdated.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function html()
if ($this->source->content->container instanceof Space) {
return Yii::t('CalendarModule.notifications_views_CanceledEvent', '{displayName} updated the event "{contentTitle}" in the space {spaceName}.', array_merge([
'spaceName' => Html::encode($this->source->content->container->displayName),
]));
], $params));
}

return Yii::t('ContentModule.notifications_views_ContentCreated', '{displayName} updated the event "{contentTitle}".', $params);
Expand Down

0 comments on commit 303a4e3

Please sign in to comment.