From 898ac60ec5f4f697d52f727b5a7ac64a1065dd92 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Thu, 21 Feb 2019 17:21:58 +0100 Subject: [PATCH] Bug 15149: Serial test prediction pattern does not consider end date MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To reproduce: 1) add a serial. 2) set first issue = today 3) set frequency = 1/month 4) dont set subscription length 5) set subscription start date = today 6) set subscription start date = today + 1 year 7) set numbering pattern = Number 8) test prediction pattern. => Without patch : you will get a list of 1000 issues, going well beyond subscripton end date. => With patch : shows only the issues within the date range. Signed-off-by: Séverine QUEUNE Signed-off-by: Séverine QUEUNE --- serials/showpredictionpattern.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serials/showpredictionpattern.pl b/serials/showpredictionpattern.pl index ec55f0e..4a3f7b2 100755 --- a/serials/showpredictionpattern.pl +++ b/serials/showpredictionpattern.pl @@ -51,7 +51,7 @@ my $subscriptionid = $input->param('subscriptionid'); my $frequencyid = $input->param('frequency'); my $firstacquidate = $input->param('firstacquidate'); my $nextacquidate = $input->param('nextacquidate'); -my $enddate = $input->param('enddate'); +my $enddate = $input->param('to'); my $subtype = $input->param('subtype'); my $sublength = $input->param('sublength'); my $custompattern = $input->param('custompattern'); -- 2.7.4