diff options
author | Alex Brelsfoard <alex@freeside.biz> | 2015-01-27 19:24:04 -0500 |
---|---|---|
committer | Alex Brelsfoard <alex@freeside.biz> | 2015-01-27 19:24:04 -0500 |
commit | 05889be74afd7e845b24ed75252026a466fe1ff2 (patch) | |
tree | e72dda1b5121647cb424b2ef4c2a607be18c94c7 | |
parent | 412bc43b866761bbdf5db3833960ebe6db1cac18 (diff) |
RT #29800: converting the DID range from numeric to string to maintain leading zeroes
-rw-r--r-- | httemplate/edit/process/bulk-svc_phone.html | 2 |
1 files changed, 1 insertions, 1 deletions
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, |