From db356a561e2f3f9cd4b8ac7f01d7cf6eacef7700 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 17 Sep 2013 15:14:20 -0300 Subject: [PATCH] [SIGNED-OFF] 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 Signed-off-by: David Noe --- .../prog/en/xslt/MARC21slim2OPACDetail.xsl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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.2.5