Fix escaping of user and group names in "shared by" message

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2017-06-13 12:14:21 +02:00
parent c46422b780
commit 376fe0e246
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 6 additions and 2 deletions

View File

@ -80,13 +80,17 @@
{
group: this.model.getReshareWithDisplayName(),
owner: ownerDisplayName
}
},
undefined,
{escape: false}
);
} else {
sharedByText = t(
'core',
'Shared with you by {owner}',
{ owner: ownerDisplayName }
{ owner: ownerDisplayName },
undefined,
{escape: false}
);
}