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

(-)a/koha-tmpl/intranet-tmpl/lib/koha/cateditor/marc-record.js (-2 / +1 lines)
Lines 37-43 define( function() { Link Here
37
    };
37
    };
38
38
39
    function _escape(str) {
39
    function _escape(str) {
40
        return str.replace( /[<&"]/, function (c) { return _escape_map[c] } );
40
        return str.replace( /[<&"]/g, function (c) { return _escape_map[c] } );
41
    }
41
    }
42
42
43
    function _intpadded(i, digits) {
43
    function _intpadded(i, digits) {
44
- 

Return to bug 15197