@@ -, +, @@ translation --- .../en/includes/catalogue/itemsearch_item.json.inc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc @@ -2,11 +2,15 @@ [%- biblio = item.biblio -%] [%- biblioitem = item.biblioitem -%] [ - "[% biblio.title |html %] by [% biblio.author |html %]", + "[% FILTER escape_quotes = replace('"', '\"') ~%] + [% biblio.title |html %] by [% biblio.author |html %] + [%~ END %]", "[% biblioitem.publicationyear |html %]", "[% biblioitem.publishercode |html %]", "[% biblioitem.collectiontitle |html %]", - "[% item.barcode |html %]", + "[% FILTER escape_quotes ~%] + [% item.barcode |html %] + [%~ END %]", "[% item.itemcallnumber |html %]", "[% Branches.GetName(item.homebranch) |html %]", "[% Branches.GetName(item.holdingbranch) |html %]", @@ -14,5 +18,7 @@ "[% item.stocknumber |html %]", "[% item.status |html %]", "[% (item.issues || 0) |html %]", - "Edit" + "[% FILTER escape_quotes ~%] + Edit + [%~ END %]" ] --