Avoid DOMPurify mess with forward slash in expirationDateString
This commit is contained in:
parent
4984194c33
commit
74551f58d7
1 changed files with 6 additions and 2 deletions
|
@ -3748,8 +3748,12 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
||||||
if (expirationDateString !== null) {
|
if (expirationDateString !== null) {
|
||||||
emailBody += EOL;
|
emailBody += EOL;
|
||||||
emailBody += BULLET;
|
emailBody += BULLET;
|
||||||
emailBody += I18n._(
|
// avoid DOMPurify mess with forward slash in expirationDateString
|
||||||
'This link will expire after %s.',
|
emailBody += Helper.sprintf(
|
||||||
|
I18n._(
|
||||||
|
'This link will expire after %s.',
|
||||||
|
'%s'
|
||||||
|
),
|
||||||
expirationDateString
|
expirationDateString
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue