mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-15 05:14:53 +00:00
Merge branch 'master' of https://github.com/inverse-inc/sogo
This commit is contained in:
@@ -3332,7 +3332,7 @@ function updateCalendarProperties(calendarID, calendarName, calendarColor) {
|
||||
// log("nodeID: " + nodeID);
|
||||
var calendarNode = $(nodeID);
|
||||
var displayNameNode = calendarNode.childNodesWithTag("span")[0];
|
||||
displayNameNode.innerHTML = calendarName;
|
||||
displayNameNode.innerHTML = calendarName.escapeHTML();
|
||||
|
||||
appendStyleElement(nodeID, calendarColor);
|
||||
}
|
||||
@@ -3516,7 +3516,7 @@ function appendCalendar(folderName, folderPath) {
|
||||
li.appendChild(colorBox);
|
||||
|
||||
var displayName = document.createElement("span");
|
||||
displayName.appendChild(document.createTextNode(folderName));
|
||||
displayName.appendChild(document.createTextNode(folderName.escapeHTML()));
|
||||
li.appendChild(displayName);
|
||||
|
||||
$(colorBox).addClassName("colorBox");
|
||||
|
||||
Reference in New Issue
Block a user