[Koha-cvs] CVS: koha/C4 Acquisitions.pm,1.5.2.14,1.5.2.15

Steve Tonnesen tonnesen at users.sourceforge.net
Tue Sep 3 23:04:24 CEST 2002


Update of /cvsroot/koha/koha/C4
In directory usw-pr-cvs1:/tmp/cvs-serv23252

Modified Files:
      Tag: rel-1-2
	Acquisitions.pm 
Log Message:
replaced > with >= and < with <= in date comparisons.


Index: Acquisitions.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Acquisitions.pm,v
retrieving revision 1.5.2.14
retrieving revision 1.5.2.15
diff -C2 -r1.5.2.14 -r1.5.2.15
*** Acquisitions.pm	3 Sep 2002 21:03:51 -0000	1.5.2.14
--- Acquisitions.pm	3 Sep 2002 21:04:22 -0000	1.5.2.15
***************
*** 348,352 ****
    my $query="Select * from aqbookfund,aqbudget where aqbookfund.bookfundid
    =aqbudget.bookfundid 
!   and aqbudget.startdate<'$today' and aqbudget.enddate > '$today'
    group by aqbookfund.bookfundid order by bookfundname";
    my $sth=$dbh->prepare($query);
--- 348,352 ----
    my $query="Select * from aqbookfund,aqbudget where aqbookfund.bookfundid
    =aqbudget.bookfundid 
!   and aqbudget.startdate<='$today' and aqbudget.enddate >= '$today'
    group by aqbookfund.bookfundid order by bookfundname";
    my $sth=$dbh->prepare($query);





More information about the Koha-cvs mailing list