From b547812ed2ed310c2acfb8a15e2cb0c454f38bca 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 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. --- serials/showpredictionpattern.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serials/showpredictionpattern.pl b/serials/showpredictionpattern.pl index ec55f0e079..4a3f7b2a64 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.17.1