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. Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr> Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr> Signed-off-by: zhihui <zhihui@inlibro.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
4585228ea9
commit
e3212c8a96
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue