Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2012-06-20 17:41:05 +0400
committerBjoern Schiessle <schiessle@owncloud.com>2012-06-20 17:41:05 +0400
commite52230d11c5cef0e6105166b7d704c8c69f60425 (patch)
tree225bebbc2d30f1eab1caadfb905a78e9f99db80e /3rdparty
parent5a2c93ec2d3383da9f945cd71763a519f1cf462f (diff)
no need to escape the title
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/fullcalendar/js/fullcalendar.js2
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 +=