[Pkg-owncloud-commits] [owncloud] 21/67: Sanitize user input
David Prévot
taffit at alioth.debian.org
Fri Nov 8 23:10:34 UTC 2013
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to annotated tag v4.5.1
in repository owncloud.
commit 33bd9ecd9d5196d2209d52a4c96e65fce4edee7e
Author: Lukas Reschke <lukas at statuscode.ch>
Date: Fri Oct 12 13:46:19 2012 +0200
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 314f8c8..bd5938c 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);
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list