From 2f0d8edc5d94a759c797405724f6b541110feb96 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Tue, 30 Aug 2011 14:58:36 +0100 Subject: [PATCH] Bug 6806 Fix encoding of title in subscription-add Port of Maxime Pelletier 's patch for 3.2 to TT Stops the mangling of titles containing accented characters Signed-off-by: Owen Leonard Signed-off-by: Paul Poulain --- .../prog/en/modules/serials/result.tt | 8 +++----- 1 files changed, 3 insertions(+), 5 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt index 2f46119..30ec303 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/result.tt @@ -5,9 +5,7 @@ // [% FOREACH resultsloo IN resultsloop %] - [% resultsloo.title |html %] [% resultsloo.subtitle |html %] + [% resultsloo.title |html %] [% resultsloo.subtitle |html %] [% resultsloo.author |html %] @@ -44,7 +42,7 @@ function GetIt(bibno,title) [% resultsloo.publicationyear |html %] - Choose + Choose [% END %] -- 1.7.4.1