diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-01-28 19:28:13 -0600 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-01-28 19:28:13 -0600 |
commit | 92a327b2bc09344a7e0db93f40e34b71547bf075 (patch) | |
tree | 5dd0ea80b997a3a1b003e0dac52463aa20ac96d5 /httemplate/edit/process | |
parent | 730a14abf09f1ed8854cfded6f432fee832ea7d8 (diff) | |
parent | 3ed9d0fa90662f037f3fb2f50632ccb34066a979 (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/edit/process')
-rw-r--r-- | httemplate/edit/process/bulk-svc_phone.html | 2 | ||||
-rwxr-xr-x | httemplate/edit/process/cust_main_note.cgi | 1 |
2 files changed, 2 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, 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; |