From: Alex Brelsfoard Date: Wed, 28 Jan 2015 00:24:04 +0000 (-0500) Subject: RT #29800: converting the DID range from numeric to string to maintain leading zeroes X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=05889be74afd7e845b24ed75252026a466fe1ff2 RT #29800: converting the DID range from numeric to string to maintain leading zeroes --- diff --git a/httemplate/edit/process/bulk-svc_phone.html b/httemplate/edit/process/bulk-svc_phone.html index 5a1fbc647..db486de76 100644 --- a/httemplate/edit/process/bulk-svc_phone.html +++ b/httemplate/edit/process/bulk-svc_phone.html @@ -25,7 +25,7 @@ my $num_avail = $1; errorpage("There are only $num_avail available") if $end - $start + 1 > $num_avail; -foreach my $phonenum ( $start .. $end ) { +foreach my $phonenum ( "$start" .. "$end" ) { my $svc_phone = new FS::svc_phone { 'phonenum' => $phonenum,