Bug 32009 - Wide character in print at /usr/share/koha/opac/opac-downloadcart.pl line 129
Summary: Wide character in print at /usr/share/koha/opac/opac-downloadcart.pl line 129
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Architecture, internals, and plumbing (show other bugs)
Version: Main
Hardware: All All
: P5 - low normal
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-10-27 06:13 UTC by Marcel de Rooy
Modified: 2022-10-27 06:14 UTC (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marcel de Rooy 2022-10-27 06:13:52 UTC
This script is not consistent about encoding at least> Handled a bit obscure.

$output = marc2csv(\@bibs, $format);
OR
$output .= encode("UTF-8", $record->as_usmarc()) // q{};
OR
$output .= marc2ris($record);
OR
$output .= marc2bibtex($record, $biblio);
OR
$output   .= GetISBDView({ 'record'    => $record, 'template'  => 'opac', 'framework' => $framework,});

print $output;

A first glance makes me think that marc2bibtex and GETISBDView are not encoded to UTF8?