View | Details | Raw Unified | Return to bug 36382
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/staff-global.js (-3 lines)
Lines 31-38 var HtmlCharsToEscape = { Link Here
31
    "&": "&",
31
    "&": "&",
32
    "<": "&lt;",
32
    "<": "&lt;",
33
    ">": "&gt;",
33
    ">": "&gt;",
34
    "'": '&#39;',
35
    '"': '&quot;'
36
};
34
};
37
String.prototype.escapeHtml = function () {
35
String.prototype.escapeHtml = function () {
38
    return this.replace(/[&<>]/g, function (c) {
36
    return this.replace(/[&<>]/g, function (c) {
39
- 

Return to bug 36382