Bug 32009

Summary: Wide character in print at /usr/share/koha/opac/opac-downloadcart.pl line 129
Product: Koha Reporter: Marcel de Rooy <m.de.rooy>
Component: Architecture, internals, and plumbingAssignee: Bugs List <koha-bugs>
Status: NEW --- QA Contact: Testopia <testopia>
Severity: normal    
Priority: P5 - low    
Version: Main   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:

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?