diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2012-06-20 15:41:05 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2012-06-20 15:41:05 +0200 |
commit | e52230d11c5cef0e6105166b7d704c8c69f60425 (patch) | |
tree | 225bebbc2d30f1eab1caadfb905a78e9f99db80e /3rdparty | |
parent | 5a2c93ec2d3383da9f945cd71763a519f1cf462f (diff) | |
download | nextcloud-server-e52230d11c5cef0e6105166b7d704c8c69f60425.tar.gz nextcloud-server-e52230d11c5cef0e6105166b7d704c8c69f60425.zip |
no need to escape the title
Diffstat (limited to '3rdparty')
-rw-r--r-- | 3rdparty/fullcalendar/js/fullcalendar.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/fullcalendar/js/fullcalendar.js b/3rdparty/fullcalendar/js/fullcalendar.js index 779a313c761..314f8c8a1a5 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'>" + htmlEscape(event.title) + "</span>" + + "<span class='fc-event-title'>" + event.title + "</span>" + "</div>"; if (seg.isEnd && isEventResizable(event)) { html += |