From 9ab524a76252135181290d562ded9fb9c11c1512 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Wed, 18 Sep 2013 15:24:08 -0400 Subject: [PATCH] Bug 10911 - Records with 880 fields have broken details links in intranet search results using XSLT. Koha intranet search results using XSLT for records with 880 fields have the details link created by a code path that incorrectly links to some opac pages. Test Plan: 1) Enable XSLT for intranet search results 2) Upload or create a record with at least one 880 field 3) Search for the item ( must have multiple hits to avoid redirection ) 4) Click the title link, note it is broken 5) Apply this patch 6) Click the title link, note it is correct --- .../intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl index 151fc7b..7334d03 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl +++ b/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slimUtils.xsl @@ -164,19 +164,19 @@ - /cgi-bin/koha/opac-detail.pl?biblionumber= + /cgi-bin/koha/catalogue/detail.pl?biblionumber= - /cgi-bin/koha/opac-search.pl?q=an: + /cgi-bin/koha/catalogue/search.pl?q=an: - /cgi-bin/koha/opac-search.pl?q=: + /cgi-bin/koha/catalogue/search.pl?q=: -- 1.7.2.5