From 13eb0d3c3e05f1706cac78164c226c78dd04c544 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Wed, 10 May 2023 13:33:53 +0000 Subject: [PATCH] Bug 29185: (QA follow-up) Quote title search in GetCnumSearchURL Content-Type: text/plain; charset=utf-8 Test plan: Disable UseControlNumber Change biblio title to something like: Hamlet or CHINESE_CHARS where you add some nice Chinese chars. Create a 765 looking for that title in another biblio record. Without this patch, the link at detail page finds both records, since it looks for ti-phr:Hamlet OR the Chinese chars. With this patch, the link at detail uses quotes and finds only one, since the OR is now part of the ti-phr search. Signed-off-by: Marcel de Rooy --- koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl | 7 ++++++- koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slimUtils.xsl | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl index 05668fa67e..3c3cecb6ff 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl @@ -765,7 +765,12 @@ - + + + + + + diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slimUtils.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slimUtils.xsl index efc3e3677d..b0a8ad1b59 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slimUtils.xsl +++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slimUtils.xsl @@ -728,7 +728,12 @@ - + + + + + + -- 2.30.2