Bug 9897 - members/member.pl double encoded utf-8 strings
Summary: members/member.pl double encoded utf-8 strings
Status: CLOSED FIXED
Alias: None
Product: Koha
Classification: Unclassified
Component: Patrons (show other bugs)
Version: Main
Hardware: All All
: P5 - low enhancement (vote)
Assignee: Bugs List
QA Contact:
URL:
Keywords:
: 11212 (view as bug list)
Depends on:
Blocks:
 
Reported: 2013-03-22 11:30 UTC by Dobrica Pavlinusic
Modified: 2015-12-03 22:00 UTC (History)
5 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.