From: Mason James Date: Tue, 13 Nov 2007 17:59:10 +0000 (-0600) Subject: bug fixed 'weeklength', not showing in subscription edit screen X-Git-Tag: v3.00.00-alpha~907 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=b3d218b41c480f73101969456d01d792e6f0bbac;p=koha.git bug fixed 'weeklength', not showing in subscription edit screen Signed-off-by: Chris Cormack Signed-off-by: Joshua Ferraro --- diff --git a/serials/subscription-add.pl b/serials/subscription-add.pl index 27db62095e..f9e5e468ac 100755 --- a/serials/subscription-add.pl +++ b/serials/subscription-add.pl @@ -124,7 +124,7 @@ if ($op eq 'mod'||$op eq 'dup') { $sublength = $subs->{numberlength}; $sub_on = $subscription_types[0]; } elsif ($subs->{weeklength}>0){ - $sublength = $weeklength; + $sublength = $subs->{weeklength}; $sub_on = $subscription_types[1]; } else { $sublength = $subs->{monthlength};