X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fprocess%2Fcust_main_note.cgi;h=f09189aa91af1097fd62caf42aa0d5c88066e272;hb=624b2d44625f69d71175c3348cae635d580c890b;hp=9689ca6d6423269b68c9ea574ca0561b49cd27b2;hpb=0930d22ffc440f80c1b222b2e750cadbabd9e8f6;p=freeside.git diff --git a/httemplate/edit/process/cust_main_note.cgi b/httemplate/edit/process/cust_main_note.cgi index 9689ca6d6..f09189aa9 100755 --- a/httemplate/edit/process/cust_main_note.cgi +++ b/httemplate/edit/process/cust_main_note.cgi @@ -2,17 +2,11 @@ % $cgi->param('error', $error); <% $cgi->redirect(popurl(2). 'cust_main_note.cgi?'. $cgi->query_string ) %> %} else { -% <% header('Note ' . ($notenum ? 'updated' : 'added') ) %> -% % } <%init> @@ -24,16 +18,12 @@ $cgi->param('notenum') =~ /^(\d*)$/ or die "Illegal notenum: ". $cgi->param('notenum'); my $notenum = $1; -my $otaker = $FS::CurrentUser::CurrentUser->name; -$otaker = $FS::CurrentUser::CurrentUser->username - if ($otaker eq "User, Legacy"); - my $new = new FS::cust_main_note ( { notenum => $notenum, custnum => $custnum, _date => time, - otaker => $otaker, - comments => $cgi->param('comment'), + usernum => $FS::CurrentUser::CurrentUser->usernum, + comments => scalar($cgi->param('comment')), } ); my $error;