BUGFIX Escape HTML in CMS status messages

This commit is contained in:
Ingo Schommer 2013-01-04 17:29:24 +01:00
parent 7bb0bbff0e
commit 604ede30a4

View File

@ -963,6 +963,7 @@ jQuery.noConflict();
}(jQuery));
var statusMessage = function(text, type) {
text = $('<div/>').text(text).html(); // Escape HTML entities in text
jQuery.noticeAdd({text: text, type: type});
};