From 896d1cd5c801222d0fc436721fbc85207f66e2af Mon Sep 17 00:00:00 2001 From: hdl Date: Thu, 12 Jul 2007 10:01:20 +0000 Subject: [PATCH] Bug Fixing : GetNextSeq did not pass through innerloop parameters. --- C4/Serials.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C4/Serials.pm b/C4/Serials.pm index ed6edc7e09..f4de27e771 100644 --- a/C4/Serials.pm +++ b/C4/Serials.pm @@ -972,7 +972,8 @@ sub GetNextSeq { $newlastvalue3=$val->{setto3} if ($newlastvalue3>$val->{whenmorethan3}); # reset counter if needed. $calculated =~ s/\{Z\}/$newlastvalue3/g; - return ( $calculated, $newlastvalue1, $newlastvalue2, $newlastvalue3 ); + return ( $calculated, $newlastvalue1, $newlastvalue2, $newlastvalue3 , + $newinnerloop1, $newinnerloop2, $newinnerloop3); } =head2 GetSeq -- 2.20.1