summaryrefslogtreecommitdiffstats
path: root/3rdparty
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-10-12 13:46:19 +0200
committerLukas Reschke <lukas@statuscode.ch>2012-10-12 14:04:09 +0200
commit33bd9ecd9d5196d2209d52a4c96e65fce4edee7e (patch)
tree024a26c99a65c616f6792f305a55f73bb1ffb4a9 /3rdparty
parent7f7c1fcccfc86f2c847d4aa2d62f96fe9ab11794 (diff)
downloadnextcloud-server-33bd9ecd9d5196d2209d52a4c96e65fce4edee7e.tar.gz
nextcloud-server-33bd9ecd9d5196d2209d52a4c96e65fce4edee7e.zip
Sanitize user input
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/fullcalendar/js/fullcalendar.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/fullcalendar/js/fullcalendar.js b/3rdparty/fullcalendar/js/fullcalendar.js
index 314f8c8a1a5..bd5938cd002 100644
--- a/3rdparty/fullcalendar/js/fullcalendar.js
+++ b/3rdparty/fullcalendar/js/fullcalendar.js
@@ -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);