From c181955f1a61c9a8aafd94696d5c9b6a3e1d076d Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sun, 9 Nov 2014 23:58:03 +0100 Subject: [PATCH] [Passed QA] Bug 13133: Fix mangled titles on pay fines page Titles with diacritics don't show correctly on the 'pay fines' page in the patron account in staff. To test: - Catalog or find a record with non-latin script Something like a word in Hebrew would work. - Create a fine entry for that record Something like a rental fee works. - Verify that the title doesn't display correct on the pay fine page (other tabs are ok) - Apply patch - Check the pages again - display should be correct now. Signed-off-by: Chris Cormack Signed-off-by: Martin Renvoize --- koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt index 7ba26d8..a2882ab 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt @@ -136,7 +136,7 @@ function enableCheckboxActions(){ [% CASE %][% line.accounttype %] [%- END -%] [%- IF line.description %], [% line.description %][% END %] - [% IF line.title %]([% line.title |html_entity %])[% END %] + [% IF line.title %]([% line.title |html %])[% END %] [% line.accounttype %] -- 1.7.10.4