From d832c884623ae55df185067137782dcc48d9d1b7 Mon Sep 17 00:00:00 2001 From: Paul POULAIN Date: Tue, 18 Sep 2007 18:38:26 +0200 Subject: [PATCH] BUGFIX : ModReserveStatus can't be found if you don't specify full path this is a workaround, and could hide another problem. However, I haven't found ModReserveStatus problem or duplicate definition. Signed-off-by: Chris Cormack --- C4/Circulation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 4a6f80fdeb..36a41af3fc 100755 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -1239,7 +1239,7 @@ sub AddReturn { $sth->execute( $iteminformation->{'itemnumber'} ); $sth->finish; # now we check if there is a reservation with the validate of transfer if we have one, we can set it with the status 'W' - ModReserveStatus( $iteminformation->{'itemnumber'},'W' ); + C4::Reserves::ModReserveStatus( $iteminformation->{'itemnumber'},'W' ); } else { $messages->{'WrongTransfer'} = $tobranch; -- 2.39.2