From 79c742303cf3e81acfd64c072cfd9567613c899c Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Mon, 30 Jan 2017 13:02:36 +0100 Subject: [PATCH] Bug 18013 - acqui/transferorder.pl typo in find method This typo was introduced in Bug 13726 and has obvious fix Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- acqui/transferorder.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/transferorder.pl b/acqui/transferorder.pl index 6cd1d2ebab..716c721913 100755 --- a/acqui/transferorder.pl +++ b/acqui/transferorder.pl @@ -60,7 +60,7 @@ my $booksellerfromname; if($booksellerfrom){ $booksellerfromname = $booksellerfrom->name; } -my $booksellerto = Koha::Acquisition::Booksellers->finf( $bookselleridto ); +my $booksellerto = Koha::Acquisition::Booksellers->find( $bookselleridto ); my $booksellertoname; if($booksellerto){ $booksellertoname = $booksellerto->name; -- 2.39.5