@@ -, +, @@ Test Plan: 1) Apply this patch 2) Ensure you are using the default XSLT setting for the staff and opac search results and record details 3) Find or create a record with MARC tags 336,337,338 4) Perform an opac search that would show the record in the search results. 5) Click title to review record. 6) Adds fields 336, 337 and 338 to staff and opac details. Adds comma between multiple subfields and | with class='separator' between multiple datafields (e.g. two 336 fields) 7) Repeat steps 4 - 6 for the staff interface --- .../prog/en/xslt/MARC21slim2intranetDetail.xsl | 41 +++++++++++++++++++ .../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 43 ++++++++++++++++++++ 2 files changed, 84 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl +++ a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl @@ -402,6 +402,47 @@ + + + + + Content Type: + + + a + , + + | + + + + + + Media Type: + + + a + , + + | + + + + + + Carrier Type: + + + a + , + + | + + + + + + ISBN: --- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl +++ a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl @@ -436,6 +436,49 @@ + + + + + + Content Type: + + + a + , + + | + + + + + + Media Type: + + + a + , + + | + + + + + + Carrier Type: + + + a + , + + | + + + + + + + ISBN: --