From 60b676c34c611308e1a6a6bb17e9c8e291f025b1 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Fri, 5 Sep 2008 10:52:20 -0500 Subject: [PATCH] bug 2585: fix search links for names (XSLT OPAC display) Fix malformed OPAC search syntax that caused this bug: When using the default stylesheet for MARC21 XSLT OPAC details display, the search links for name headings (from 100, 700, 710, 710, 111, and 711) that are linked to authority records don't work. When the user clicks on such a link, they are directed to the advanced search form instead of the search results. Signed-off-by: Galen Charlton --- koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl index 080be221ee..2e0ba36fce 100644 --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl @@ -75,7 +75,7 @@ - /cgi-bin/koha/opac-search.pl?authid= + /cgi-bin/koha/opac-search.pl?q=an: /cgi-bin/koha/opac-search.pl?q=au: @@ -90,7 +90,7 @@ - /cgi-bin/koha/opac-search.pl?authid= + /cgi-bin/koha/opac-search.pl?q=an: /cgi-bin/koha/opac-search.pl?q=au: @@ -104,7 +104,7 @@ - /cgi-bin/koha/opac-search.pl?authid= + /cgi-bin/koha/opac-search.pl?q=an: /cgi-bin/koha/opac-search.pl?q=au: -- 2.39.5