@@ -, +, @@ --- cataloguing/value_builder/marc21_linking_section.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/cataloguing/value_builder/marc21_linking_section.pl +++ a/cataloguing/value_builder/marc21_linking_section.pl @@ -226,7 +226,7 @@ sub plugin { my $record = MARC::Record::new_from_usmarc( $results->[$i] ); my $rechash = TransformMarcToKoha( $dbh, $record ); my $pos; - my $countitems = 1 if ( $rechash->{itemnumber} ); + my $countitems = $rechash->{itembumber} ? 1 : 0; while ( index( $rechash->{itemnumber}, '|', $pos ) > 0 ) { $countitems += 1; $pos = index( $rechash->{itemnumber}, '|', $pos ) + 1; @@ -406,4 +406,4 @@ sub plugin { output_html_with_http_headers $query, $cookie, $template->output; } -1; +1; --