@@ -, +, @@ --- circ/circulation.pl | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) --- a/circ/circulation.pl +++ a/circ/circulation.pl @@ -24,6 +24,7 @@ use strict; use warnings; use CGI; + use C4::Output; use C4::Print; use C4::Auth qw/:DEFAULT get_session/; @@ -102,6 +103,7 @@ our %return_failed = (); for (@failedreturns) { $return_failed{$_} = 1; } my $findborrower = $query->param('findborrower') || q{}; +utf8::decode($findborrower); $findborrower =~ s|,| |g; my $borrowernumber = $query->param('borrowernumber'); --