From dd5bd8e484621a1a9eb6ab9a7a62f5ce17c53446 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9CByWater?= <“staff@bywatersolutions.com”>
Date: Mon, 6 Apr 2015 05:49:35 -0700
Subject: [PATCH] Bug 13812 - Facet links broken because double-quotes are not URL encoded.
This bug is analogous to Bug 13442, but it affects shelf location rather than collection code:
Limiting a search by shelf location is broken, because it wraps double-quotes around the "value" part of the key-value pair in the URL. This breaks the href= part of the anchor tag.
The anchor tag generated for the shelf location faced is
Paetro, Maxine,
Once again, double-quotes inside the URL are causing a premature close of the href, which results in a broken link.
http://bugs.koha-community.org/show_bug.cgi?id=13821
---
.../bootstrap/en/xslt/MARC21slim2OPACDetail.xsl | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl
index 11624c4..11daa79c 100644
--- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl
+++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl
@@ -585,8 +585,8 @@
/cgi-bin/koha/opac-search.pl?q=
abcdfgklmnopqrstvxyz
AND
- (su:
- )
+ (su:
+
--
1.7.2.5