X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fprocess%2Fcust_main_note.cgi;h=227297eef3a31178a0ae7a98de5f6910b6101f0e;hb=457da870c23db87fbbc29d7c667a73f41422dd71;hp=f904c5968ddf08fdafe4692c3cfdfa26b311eb75;hpb=b7c314a198c60a6f9236950994113aa422aa77ff;p=freeside.git 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("
\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,