From 05889be74afd7e845b24ed75252026a466fe1ff2 Mon Sep 17 00:00:00 2001 From: Alex Brelsfoard Date: Tue, 27 Jan 2015 19:24:04 -0500 Subject: RT #29800: converting the DID range from numeric to string to maintain leading zeroes --- httemplate/edit/process/bulk-svc_phone.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'httemplate/edit/process') 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, -- cgit v1.2.1 From a2faeced765b00c0339fd86d7905cb77318e3d20 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Wed, 28 Jan 2015 02:24:07 -0800 Subject: sticky customer notes, RT#29311 --- httemplate/edit/process/cust_main_note.cgi | 1 + 1 file changed, 1 insertion(+) (limited to 'httemplate/edit/process') diff --git a/httemplate/edit/process/cust_main_note.cgi b/httemplate/edit/process/cust_main_note.cgi index 227297eef..53e616a43 100755 --- a/httemplate/edit/process/cust_main_note.cgi +++ b/httemplate/edit/process/cust_main_note.cgi @@ -33,6 +33,7 @@ my $new = new FS::cust_main_note ( { _date => time, usernum => $FS::CurrentUser::CurrentUser->usernum, comments => $comment, + sticky => scalar( $cgi->param('sticky') ), } ); my $error; -- cgit v1.2.1