http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8798
--- Comment #86 from Galen Charlton <[email protected]> --- I'm not seeing UTF8-releated breakage -- try running this program after applying the squashed patch. The output (not counting a DBIx::Class::Carp about the nullability of borrowers.cardnumber that should be addressed at some point) is correct: Institut Protestant de Théologie #!/usr/bin/perl use Modern::Perl; use Koha::Database; my $database = Koha::Database->new(); my $schema = $database->schema(); my @branches = $schema->resultset('Branch')->search({ branchcode => 'IPT'})->all(); binmode(STDOUT, ':encoding(UTF-8)'); print $branches[0]->branchname(); print "\n"; -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
