@@ -, +, @@ Bug 28941: Filter suggestion inputs at the OPAC --- opac/opac-suggestions.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/opac/opac-suggestions.pl +++ a/opac/opac-suggestions.pl @@ -254,7 +254,7 @@ my @mandatoryfields; } if ( $biblionumber ) { my $biblio = Koha::Biblios->find($biblionumber); - $template->param( + $suggestion = { biblionumber => $biblio->biblionumber, title => $biblio->title, author => $biblio->author, @@ -263,7 +263,7 @@ my @mandatoryfields; publishercode => $biblio->biblioitem->publishercode, collectiontitle => $biblio->biblioitem->collectiontitle, place => $biblio->biblioitem->place, - ); + }; } } --