Merge pull request #5369 from nextcloud/fix-user-group-name-escaping
Fix escaping of user and group names in "shared by" message
This commit is contained in:
commit
906b2402b4
|
@ -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}
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue