[Koha-cvs] CVS: koha/admin aqbookfund.pl,1.19.2.1,1.19.2.2

Owen Leonard oleonard at users.sourceforge.net
Wed Apr 20 20:36:55 CEST 2005


Update of /cvsroot/koha/koha/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6337/admin

Modified Files:
      Tag: rel_2_2
	aqbookfund.pl 
Log Message:
Formatting dates according to system preferences

Index: aqbookfund.pl
===================================================================
RCS file: /cvsroot/koha/koha/admin/aqbookfund.pl,v
retrieving revision 1.19.2.1
retrieving revision 1.19.2.2
diff -C2 -r1.19.2.1 -r1.19.2.2
*** aqbookfund.pl	29 Mar 2005 15:41:42 -0000	1.19.2.1
--- aqbookfund.pl	20 Apr 2005 18:36:52 -0000	1.19.2.2
***************
*** 45,48 ****
--- 45,49 ----
  use C4::Interface::CGI::Output;
  use C4::Search;
+ use C4::Date;
  use HTML::Template;
  
***************
*** 183,188 ****
  			my %budgetrow_data;
  			$budgetrow_data{aqbudgetid} = $aqbudgetid;
! 			$budgetrow_data{startdate} = $startdate;
! 			$budgetrow_data{enddate} = $enddate;
  			$budgetrow_data{budgetamount} = $budgetamount;
  			push @budget_loop,\%budgetrow_data;
--- 184,189 ----
  			my %budgetrow_data;
  			$budgetrow_data{aqbudgetid} = $aqbudgetid;
! 			$budgetrow_data{startdate} = format_date($startdate);
! 			$budgetrow_data{enddate} = format_date($enddate);
  			$budgetrow_data{budgetamount} = $budgetamount;
  			push @budget_loop,\%budgetrow_data;





More information about the Koha-cvs mailing list