Skip to content

Commit

Permalink
[MP-1010] Fix ampersand in email_subject_room_name
Browse files Browse the repository at this point in the history
  • Loading branch information
dasha140132 committed Oct 22, 2020
1 parent 10af010 commit 5860f15
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions app/lib/server/startup/email.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,22 +116,19 @@ settings.addGroup('Email', function() {

this.section('Subject', function() {
this.add('Offline_DM_Email', '[[Site_Name]] You have been direct messaged by [User]', {
type: 'code',
code: 'text',
type: 'string',
multiline: true,
i18nLabel: 'Offline_DM_Email',
i18nDescription: 'Offline_Email_Subject_Description',
});
this.add('Offline_Mention_Email', '[[Site_Name]] You have been mentioned by [User] in #[Room]', {
type: 'code',
code: 'text',
type: 'string',
multiline: true,
i18nLabel: 'Offline_Mention_Email',
i18nDescription: 'Offline_Email_Subject_Description',
});
this.add('Offline_Mention_All_Email', '[User] has posted a message in #[Room]', {
type: 'code',
code: 'text',
type: 'string',
multiline: true,
i18nLabel: 'Offline_Mention_All_Email',
i18nDescription: 'Offline_Email_Subject_Description',
Expand Down

0 comments on commit 5860f15

Please sign in to comment.