From c64124362300f690959a2e5ca621cad4023a854b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Thu, 24 Mar 2016 11:59:27 +0100 Subject: [PATCH] Bug 14614: Multiple URLs (856) in cart/list email are broken MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To reproduce: - Add multiple subfields 856 u to a bilbio - Add this biblio to a cart and send it as mail Result: Links in mail body are broken To test - Apply patch - Send cart again - Result: In mail body, links display separated with blank-pipe-blank like http://bla.com | http://blabla.com | http://blablabla.com - Change one of the 856 u to not to be a link, e.g. äöü - Send cart again - Verify that in mail body äöü correctly display as text. --- koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt index c99b54e..adb47cd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/basket/sendbasket.tt @@ -125,7 +125,7 @@ Your cart [% END %] [% IF ( BIBLIO_RESULT.url ) %] - URL: [% BIBLIO_RESULT.url |url %] + URL: [% BIBLIO_RESULT.url %] [% END %]

-- 1.7.10.4