[freeside-commits] branch FREESIDE_3_BRANCH updated. b2d79135127e961869a05b936b9d33b1bef135df

Alex Brelsfoard alex at 420.am
Sat Jan 31 15:55:21 PST 2015


The branch, FREESIDE_3_BRANCH has been updated
       via  b2d79135127e961869a05b936b9d33b1bef135df (commit)
      from  e52c755594893c7998def6b930e715bf19021ff5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b2d79135127e961869a05b936b9d33b1bef135df
Author: Alex Brelsfoard <alex at freeside.biz>
Date:   Sat Jan 31 18:54:47 2015 -0500

    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 5a1fbc6..db486de 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,


-----------------------------------------------------------------------

Summary of changes:
 httemplate/edit/process/bulk-svc_phone.html |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)




More information about the freeside-commits mailing list