From: Nahuel ANGELINETTI Date: Mon, 15 Jun 2009 10:19:37 +0000 (+0200) Subject: (bug #3329) Dependency missing in inventory.pl X-Git-Tag: n_acq_a_porter~26^2~57 X-Git-Url: http://git.rot13.org/?p=koha.git;a=commitdiff_plain;h=fc798b0e8d9605b8fbacdc07eb83f3925bf6fc2f (bug #3329) Dependency missing in inventory.pl The called function AddReturn is in C4::Circulation which is not loaded, this patch do it. Signed-off-by: Galen Charlton --- diff --git a/tools/inventory.pl b/tools/inventory.pl index f3de234c54..8474d7d274 100755 --- a/tools/inventory.pl +++ b/tools/inventory.pl @@ -27,6 +27,7 @@ use C4::Items; use C4::Dates qw/format_date format_date_in_iso/; use C4::Koha; use C4::Branch; # GetBranches +use C4::Circulation; my $input = new CGI; my $minlocation=$input->param('minlocation') || '';