View | Details | Raw Unified | Return to bug 16855
Collapse All | Expand All

(-)a/tools/export.pl (-2 / +1 lines)
Lines 148-154 if ( $op eq "export" ) { Link Here
148
                    ),
148
                    ),
149
149
150
                };
150
                };
151
                my $biblioitems = Koha::Biblioitems->search( $conditions, { join => 'items' } );
151
                my $biblioitems = Koha::Biblioitems->search( $conditions, { join => 'items', columns => 'biblionumber' } );
152
                while ( my $biblioitem = $biblioitems->next ) {
152
                while ( my $biblioitem = $biblioitems->next ) {
153
                    push @record_ids, $biblioitem->biblionumber;
153
                    push @record_ids, $biblioitem->biblionumber;
154
                }
154
                }
155
- 

Return to bug 16855