@@ -, +, @@ xx - is a borrowernumber xx - is a borrowernumber. --- circ/circulation.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/circ/circulation.pl +++ a/circ/circulation.pl @@ -29,6 +29,7 @@ use warnings; use CGI qw ( -utf8 ); use DateTime; use DateTime::Duration; +use HTML::Entities; use C4::Output; use C4::Print; use C4::Auth qw/:DEFAULT get_session haspermission/; @@ -106,6 +107,7 @@ $barcodes = [ uniq @$barcodes ]; my $template_name = q|circ/circulation.tt|; my $borrowernumber = $query->param('borrowernumber'); +$borrowernumber = HTML::Entities::encode($borrowernumber); my $patron = $borrowernumber ? Koha::Patrons->find( $borrowernumber ) : undef; my $batch = $query->param('batch'); my $batch_allowed = 0; --