diff options
author | levinse <levinse> | 2011-01-27 05:10:11 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-01-27 05:10:11 +0000 |
commit | eca5199332bb2ba562fe9897a1832d557d5143a5 (patch) | |
tree | f7ab5d0d9b66d0a5b0fada5e2b3cc152c473c9ee /httemplate/edit/process/cust_main_note.cgi | |
parent | 3fafb034f6b3f6fbd6b81edf6337b29b9e8be86e (diff) |
note classes backport to 2.1 branch, RT9995
Diffstat (limited to 'httemplate/edit/process/cust_main_note.cgi')
-rwxr-xr-x | httemplate/edit/process/cust_main_note.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/edit/process/cust_main_note.cgi b/httemplate/edit/process/cust_main_note.cgi index f904c5968..227297eef 100755 --- a/httemplate/edit/process/cust_main_note.cgi +++ b/httemplate/edit/process/cust_main_note.cgi @@ -18,6 +18,9 @@ $cgi->param('notenum') =~ /^(\d*)$/ or die "Illegal notenum: ". $cgi->param('notenum'); my $notenum = $1; +$cgi->param('classnum') =~ /^(\d*)$/; +my $classnum = $1; + my $comment = $cgi->param('comment_html') || join("<br />\n", split "(?:\r|\n)+", $cgi->param('comment_plain') @@ -26,6 +29,7 @@ my $comment = $cgi->param('comment_html') || my $new = new FS::cust_main_note ( { notenum => $notenum, custnum => $custnum, + classnum => $classnum ? $classnum : undef, _date => time, usernum => $FS::CurrentUser::CurrentUser->usernum, comments => $comment, |