[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/C4 Bull.pm [rel_2_2]
From: |
Robert Lyon |
Subject: |
[Koha-cvs] koha/C4 Bull.pm [rel_2_2] |
Date: |
Tue, 28 Nov 2006 01:34:48 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: rel_2_2
Changes by: Robert Lyon <bob_lyon> 06/11/28 01:34:48
Modified files:
C4 : Bull.pm
Log message:
Fixed problem with irregularity - helps to call the right subroutine
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Bull.pm?cvsroot=koha&only_with_tag=rel_2_2&r1=1.6.2.37&r2=1.6.2.38
Patches:
Index: Bull.pm
===================================================================
RCS file: /sources/koha/koha/C4/Attic/Bull.pm,v
retrieving revision 1.6.2.37
retrieving revision 1.6.2.38
diff -u -b -r1.6.2.37 -r1.6.2.38
--- Bull.pm 28 Nov 2006 00:55:00 -0000 1.6.2.37
+++ Bull.pm 28 Nov 2006 01:34:47 -0000 1.6.2.38
@@ -1570,7 +1570,7 @@
$sth->execute($subscriptionid);
my $val = $sth->fetchrow_hashref;
# next date (calculated from actual date &
frequency parameters)
- my $nextplanneddate =
Get_Next_Date($planneddate,$val);
+ my $nextplanneddate =
GetNextDate($planneddate,$val);
# next issue number
# my
($newserialseq,$newlastvalue1,$newlastvalue2,$newlastvalue3,$newinnerloop1,$newinnerloop2,$newinnerloop3)
= Get_Next_Seq($val);
my
($newserialseq,$newlastvalue1,$newlastvalue2,$newlastvalue3) =
New_Get_Next_Seq($val,$nextplanneddate);