Bug 9897

Summary: members/member.pl double encoded utf-8 strings
Product: Koha Reporter: Dobrica Pavlinusic <dpavlin>
Component: PatronsAssignee: Bugs List <koha-bugs>
Status: CLOSED FIXED QA Contact:
Severity: enhancement    
Priority: P5 - low CC: beyribey, dpavlin, gmcharlt, kyle.m.hall, m.de.rooy
Version: Main   
Hardware: All   
OS: All   
See Also: http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11212
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:

Description Dobrica Pavlinusic 2013-03-22 11:30:33 UTC
Since we are doing encode all over the place if patron categories have utf-8
strings this page gets corrupted.

Culprit is

my @categories=C4::Category->all;

which can be tested by replacing it with empty array like

my @categories=()

Unfortunately die to the way code is structured there is no easy solution for this problem.
Comment 1 Dobrica Pavlinusic 2013-03-22 13:05:08 UTC
Fortunately bug 6554 has nice side-effect of side-stepping this problem completely because it fixes encoding all over koha.
Comment 2 Marcel de Rooy 2013-05-06 07:35:21 UTC
(In reply to comment #1)
> Fortunately bug 6554 has nice side-effect of side-stepping this problem
> completely because it fixes encoding all over koha.

Unfortunately :) this has been reverted..
Comment 3 Magnus Enger 2014-05-20 12:18:24 UTC
*** Bug 11212 has been marked as a duplicate of this bug. ***
Comment 4 Dobrica Pavlinusic 2015-03-04 10:57:55 UTC
This bug was fixed by subsequent code changes so no need to keep it open.