Merge branch 'MDL-61359-35' of git://github.com/mickhawkins/moodle into MOODLE_35_STABLE

This commit is contained in:
Jake Dallimore 2018-07-09 12:11:05 +08:00
commit 5136441985
2 changed files with 3 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -553,15 +553,13 @@ define(['jquery', 'core/ajax', 'core/templates', 'core/notification', 'core/cust
* @return {String} The altered text
*/
Contacts.prototype._getContactText = function(text) {
// Remove the HTML tags to render the contact text.
text = $(document.createElement('div')).html(text).text();
if (text.length > this._messageLength) {
text = text.substr(0, this._messageLength - 3);
text += '...';
}
return text;
// Text node prevents script injection through HTML entities.
return document.createTextNode(text);
};
/**