@@ -, +, @@ on saving --- koha-tmpl/intranet-tmpl/lib/koha/cateditor/marc-record.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/lib/koha/cateditor/marc-record.js +++ a/koha-tmpl/intranet-tmpl/lib/koha/cateditor/marc-record.js @@ -37,7 +37,7 @@ define( function() { }; function _escape(str) { - return str.replace( /[<&"]/, function (c) { return _escape_map[c] } ); + return str.replace( /[<&"]/g, function (c) { return _escape_map[c] } ); } function _intpadded(i, digits) { --