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

(-)a/misc/migration_tools/fix_onloan.pl (-2 / +1 lines)
Lines 10-16 use Koha::Items; Link Here
10
# and put it in the MARC::Record of the item
10
# and put it in the MARC::Record of the item
11
#
11
#
12
12
13
my $items = Koha::Items->({ onloan => { '!=' => undef } });
13
my $items = Koha::Items->search({ onloan => { '!=' => undef } });
14
14
15
$|=1;
15
$|=1;
16
while ( my $item = $items->next ) {
16
while ( my $item = $items->next ) {
17
- 

Return to bug 28028