From 9b3e1552c4cfb41f1d85b346515f15450760d7bf Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Thu, 1 Dec 2011 19:35:43 -0500 Subject: [PATCH] Bug 5369: Make series tracings use phrase indexes By definition, series tracings should search for other records in the same series, i.e., those with the exact same series title. This patch forces the tracings to use phrase indexes for series tracings. Note that this patch DOES NOT respect TraceCompleteSubfields. While that may be desirable, it is outside the scope of the current patch. An additional follow-up patch could be written to add support for TraceCompleteSubfields, if community concensus is that series tracings should obey TraceCompleteSubfields. Signed-off-by: Katrin Fischer Thx for the follow up and sign off Jared :) --- .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 6 +++--- koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl index c73990d3b8..e095b03ea1 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl @@ -155,7 +155,7 @@ Series: - /cgi-bin/koha/catalogue/search.pl?q=se:" + /cgi-bin/koha/catalogue/search.pl?q=se,phr:" @@ -170,7 +170,7 @@ - /cgi-bin/koha/catalogue/search.pl?q=se:" + /cgi-bin/koha/catalogue/search.pl?q=se,phr:" @@ -198,7 +198,7 @@ - /cgi-bin/koha/catalogue/search.pl?q=se:"" + /cgi-bin/koha/catalogue/search.pl?q=se,phr:"" diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl index f0660a7be6..fba9ef74ea 100755 --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl @@ -210,7 +210,7 @@ Series: - /cgi-bin/koha/opac-search.pl?q=se:" + /cgi-bin/koha/opac-search.pl?q=se,phr:" @@ -225,7 +225,7 @@ - /cgi-bin/koha/opac-search.pl?q=se:" + /cgi-bin/koha/opac-search.pl?q=se,phr:" @@ -253,7 +253,7 @@ - /cgi-bin/koha/opac-search.pl?q=se:"" + /cgi-bin/koha/opac-search.pl?q=se,phr:"" -- 2.20.1