@@ -, +, @@ in export.pl --- tools/export.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/tools/export.pl +++ a/tools/export.pl @@ -148,7 +148,7 @@ if ( $op eq "export" ) { ), }; - my $biblioitems = Koha::Biblioitems->search( $conditions, { join => 'items' } ); + my $biblioitems = Koha::Biblioitems->search( $conditions, { join => 'items', columns => 'biblionumber' } ); while ( my $biblioitem = $biblioitems->next ) { push @record_ids, $biblioitem->biblionumber; } --