mirror of
https://github.com/nextcloud/server.git
synced 2026-05-14 09:29:52 -04:00
Sanitize user input
This commit is contained in:
parent
7f7c1fcccf
commit
33bd9ecd9d
1 changed files with 2 additions and 2 deletions
4
3rdparty/fullcalendar/js/fullcalendar.js
vendored
4
3rdparty/fullcalendar/js/fullcalendar.js
vendored
|
|
@ -4662,7 +4662,7 @@ function DayEventRenderer() {
|
|||
"</span>";
|
||||
}
|
||||
html +=
|
||||
"<span class='fc-event-title'>" + event.title + "</span>" +
|
||||
"<span class='fc-event-title'>" + htmlEscape(event.title) + "</span>" +
|
||||
"</div>";
|
||||
if (seg.isEnd && isEventResizable(event)) {
|
||||
html +=
|
||||
|
|
@ -5220,5 +5220,5 @@ function HorizontalPositionCache(getElement) {
|
|||
};
|
||||
|
||||
}
|
||||
|
||||
|
||||
})(jQuery);
|
||||
|
|
|
|||
Loading…
Reference in a new issue