From b81db9061d947366224f2e94aefda75cf10be0bc Mon Sep 17 00:00:00 2001 From: hdl Date: Mon, 28 May 2007 15:26:43 +0000 Subject: [PATCH] Deleting $year paramater in GetBookfundBreakdown --- C4/Bookfund.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Bookfund.pm b/C4/Bookfund.pm index 20c33c53c7..d3d1016370 100755 --- a/C4/Bookfund.pm +++ b/C4/Bookfund.pm @@ -205,7 +205,7 @@ sub GetCurrencies { =head3 GetBookFundBreakdown -( $spent, $comtd ) = &GetBookFundBreakdown( $id, $year, $start, $end ); +( $spent, $comtd ) = &GetBookFundBreakdown( $id, $start, $end ); returns the total comtd & spent for a given bookfund, and a given year used in acqui-home.pl @@ -213,7 +213,7 @@ used in acqui-home.pl =cut sub GetBookFundBreakdown { - my ( $id, $year, $start, $end ) = @_; + my ( $id, $start, $end ) = @_; my $dbh = C4::Context->dbh; # if no start/end dates given defaut to everything -- 2.39.2