From ed2598aea2edd56740b692ef8300044e618eae5f Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Thu, 26 Sep 2019 09:09:15 +0200 Subject: [PATCH] Bug 23679: fix software error when trying to transfer an unknown barcode When trying to transfer an unknown barcode in /cgi-bin/koha/circ/branchtransfers.pl you get the error : Can't call method "itemnumber" on an undefined value at /home/koha/src/C4/Circulation.pm line 319. This comes from C4::Circulation::transferbook which should stop when finding unknown barcode. Test plan : 1) Go to /cgi-bin/koha/circ/branchtransfers.pl 2) Enter a barcode not existing in database 3) Without patch you get a software error, with patch you get a message saying 'No Item with barcode' 4) Enter a barcode existing in database and check transfer is OK Signed-off-by: Owen Leonard --- C4/Circulation.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 66993ea461e..014c0186282 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -314,6 +314,7 @@ sub transferbook { unless ( $item ) { $messages->{'BadBarcode'} = $barcode; $dotransfer = 0; + return ( $dotransfer, $messages ); } my $itemnumber = $item->itemnumber; -- 2.11.0