From 9076ca606f18793e59b3eafdbef9becc05a3ebd8 Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Thu, 25 Apr 2019 15:34:36 +0000 Subject: [PATCH] Bug 21716: Escape publisher in item search To prevent endless processing errors. To test: * create a biblio with a publisher with a backslash - i.e. 260$b with graham\lineham * do an item search that will include that title in the results * wait forever, because it won't work. * apply this patch * repeat steps, notice that you a. get results b. your result is listed with it's correct publisher * rejoice Signed-off-by: Hayley Mapley Signed-off-by: Nick Clemens --- .../intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc index ed39685e3a..16db6ad5f4 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc @@ -1,5 +1,6 @@ [%- USE Branches -%] [%- USE Koha -%] +[%- USE To -%] [%- USE ItemTypes -%] [% USE AuthorisedValues %] [%- biblio = item.biblio -%] @@ -9,7 +10,7 @@ [% biblio.title | html %][% IF ( Koha.Preference( 'marcflavour' ) == 'UNIMARC' && biblio.author ) %] by[% END %] [% biblio.author | html %] [%~ END %]", "[% (biblioitem.publicationyear || biblio.copyrightdate) | html %]", - "[% biblioitem.publishercode | html %]", + "[% biblioitem.publishercode | html | $To %]", "[% AuthorisedValues.GetByCode( 'CCODE', item.ccode ) | html %]", "[% FILTER escape_quotes ~%] [% item.barcode | html %] -- 2.11.0