@@ -, +, @@ xx - is a booksellerid xx - is a booksellerid. --- acqui/supplier.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/acqui/supplier.pl +++ a/acqui/supplier.pl @@ -42,6 +42,7 @@ To know the bookseller this script has to display details. use strict; use warnings; +use HTML::Entities; use C4::Auth; use C4::Contract; use C4::Biblio; @@ -66,6 +67,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( } ); my $booksellerid = $query->param('booksellerid'); +$booksellerid = HTML::Entities::encode($booksellerid); my $supplier; if ($booksellerid) { $supplier = Koha::Acquisition::Booksellers->find( $booksellerid ); --