forked from extern/egroupware
Calendar: Fix double encoded ><& characters in event tooltip description
Backport of c9d5eb50db
This commit is contained in:
parent
d0902a6815
commit
f2d187353a
@ -420,7 +420,7 @@ var et2_calendar_event = /** @class */ (function (_super) {
|
||||
// Activate links in description
|
||||
var description_node = document.createElement("p");
|
||||
description_node.className = "calendar_calEvent_description";
|
||||
et2_insertLinkText(et2_activateLinks(egw.htmlspecialchars(this.options.value.description)), description_node, '_blank');
|
||||
et2_insertLinkText(et2_activateLinks(this.options.value.description), description_node, '_blank');
|
||||
// Location + Videoconference
|
||||
var location = '';
|
||||
if (this.options.value.location || this.options.value['##videoconference']) {
|
||||
|
@ -535,7 +535,7 @@ export class et2_calendar_event extends et2_valueWidget implements et2_IDetached
|
||||
let description_node = document.createElement("p");
|
||||
description_node.className = "calendar_calEvent_description";
|
||||
et2_insertLinkText(
|
||||
et2_activateLinks(egw.htmlspecialchars(this.options.value.description)), description_node, '_blank'
|
||||
et2_activateLinks(this.options.value.description), description_node, '_blank'
|
||||
);
|
||||
|
||||
// Location + Videoconference
|
||||
|
Loading…
Reference in New Issue
Block a user