Skip to content
Permalink
Browse files Browse the repository at this point in the history
Sanitize user input
  • Loading branch information
LukasReschke committed Oct 12, 2012
1 parent cdd3021 commit ce66759
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 3rdparty/fullcalendar/js/fullcalendar.js
Expand Up @@ -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 +=
Expand Down Expand Up @@ -5220,5 +5220,5 @@ function HorizontalPositionCache(getElement) {
};

}


})(jQuery);

0 comments on commit ce66759

Please sign in to comment.