Summary: | Move from the utf8:: pragma methods to Encode:: | ||
---|---|---|---|
Product: | Koha | Reporter: | Tomás Cohen Arazi (tcohen) <tomascohen> |
Component: | Architecture, internals, and plumbing | Assignee: | Galen Charlton <gmcharlt> |
Status: | RESOLVED DUPLICATE | QA Contact: | |
Severity: | major | ||
Priority: | P5 - low | CC: | m.de.rooy |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
See Also: | http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6554 | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Attachments: |
Bug 10068 - Replace the utf8 pragma at acqui/booksellers.pl
Bug 10068 - Replace the utf8 pragma at C4/Output.pm Bug 10068 - Replace the utf8 pragma at admin/preferences.pl Bug 10068 - Replace the utf8 pragma at C4/Biblio.pm Bug 10068 - Replace the utf8 pragma at acqui/histsearch.pl Bug 10068 - Replace the utf8 pragma at C4/Installer.pm Bug 10068 - Replace the utf8 pragma at C4/Search.pm |
Description
Tomás Cohen Arazi (tcohen)
2013-04-16 17:36:06 UTC
Created attachment 17501 [details] [review] Bug 10068 - Replace the utf8 pragma at acqui/booksellers.pl utf8::decode($string) for Encode::decode('UTF-8',$string) Added Carp and error handling. Sponsored-by: Universidad Nacional de Córdoba Created attachment 17502 [details] [review] Bug 10068 - Replace the utf8 pragma at C4/Output.pm utf8::encode($string) for Encode::encode('UTF-8',$string) Added Carp and error handling. Sponsored-by: Universidad Nacional de Córdoba Created attachment 17503 [details] [review] Bug 10068 - Replace the utf8 pragma at admin/preferences.pl utf8::decode($string) for Encode::decode('UTF-8',$string) Added Carp and error handling. Sponsored-by: Universidad Nacional de Córdoba Created attachment 17504 [details] [review] Bug 10068 - Replace the utf8 pragma at C4/Biblio.pm utf8::decode($string) for Encode::decode('UTF-8',$string) Added Carp and error handling. Sponsored-by: Universidad Nacional de Córdoba Created attachment 17505 [details] [review] Bug 10068 - Replace the utf8 pragma at acqui/histsearch.pl utf8::decode($string) for Encode::decode('UTF-8',$string) Added Carp and error handling. Sponsored-by: Universidad Nacional de Córdoba Created attachment 17506 [details] [review] Bug 10068 - Replace the utf8 pragma at C4/Installer.pm utf8::encode($string) for Encode::encode('UTF-8',$string) Added Carp and error handling. Sponsored-by: Universidad Nacional de Córdoba Created attachment 17507 [details] [review] Bug 10068 - Replace the utf8 pragma at C4/Search.pm utf8::decode($string) for Encode::decode('UTF-8',$string) Added Carp and error handling. Sponsored-by: Universidad Nacional de Córdoba |