From ce66759a422384d4b7af6ff6b3ed0ed1e243f68c Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Fri, 12 Oct 2012 13:46:19 +0200 Subject: [PATCH] Sanitize user input --- 3rdparty/fullcalendar/js/fullcalendar.js | 4 ++-- 1 file 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() { ""; } html += - "" + event.title + "" + + "" + htmlEscape(event.title) + "" + ""; if (seg.isEnd && isEventResizable(event)) { html += @@ -5220,5 +5220,5 @@ function HorizontalPositionCache(getElement) { }; } - + })(jQuery); -- 2.39.5