@@ -, +, @@ --- Koha/Item.pm | 2 +- t/db_dependent/Koha/Item.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/Koha/Item.pm +++ a/Koha/Item.pm @@ -511,7 +511,7 @@ sub get_transfer { my $transfer = $item->get_transfers; Return the list of outstanding transfers (i.e requested but not yet cancelled -or recieved). +or received). Note: Transfers are retrieved in a Modified FIFO (First In First Out) order whereby the most recently sent, but not received, transfer will be returned --- a/t/db_dependent/Koha/Item.t +++ a/t/db_dependent/Koha/Item.t @@ -781,7 +781,7 @@ subtest 'get_transfers' => sub { $transfer_2->datearrived(\'NOW()')->store; $transfers = $item->get_transfers(); - is($transfers->count, 2, 'Once a transfer is recieved, it no longer appears in the list from ->get_transfers()'); + is($transfers->count, 2, 'Once a transfer is received, it no longer appears in the list from ->get_transfers()'); $result_1 = $transfers->next; $result_2 = $transfers->next; is( $result_1->branchtransfer_id, $transfer_1->branchtransfer_id, 'Koha::Item->get_transfers returns the other transfers oldest to newest'); --