From 773822ba16ea629e3e3465e184f707f00090dc6d Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 17 Sep 2013 15:14:20 -0300 Subject: [PATCH] Bug 10905: Author tracings incorrect when UseAuthoritiesForTracings is turned on Quotation marks in MARC21slim2OPACDetail.xsl break author tracings in OPAC. This patch fixes that. To reproduce: - Enable UseAuthoritiesForTracings - Search in the OPAC and go to the detail page of a record that has links to authorities. - Click on the magnifier icon - You get a 404 error page. To test the fix: - Apply the patch - Search in the OPAC and go to the detail page of a record that has links to authorities. - Click on the magnifier icon - You are sent to the corresponding authority record. Regards To+ Sponsored-by: Universidad Nacional de Cordoba http://bugs.koha-community.org/show_bug.cgi?id=10838 --- .../prog/en/xslt/MARC21slim2OPACDetail.xsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl index c3a846c..9854e9d 100644 --- a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl +++ b/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl @@ -1027,7 +1027,7 @@ - /cgi-bin/koha/opac-authoritiesdetail.pl?authid="" + /cgi-bin/koha/opac-authoritiesdetail.pl?authid= -- 1.7.9.5