diff options
author | mark <mark> | 2010-05-24 23:55:15 +0000 |
---|---|---|
committer | mark <mark> | 2010-05-24 23:55:15 +0000 |
commit | 3e02e34d71a4d29744e90d66377e84f5640b78c4 (patch) | |
tree | d85faa05c61792e2dea9cff77b36d245a38b36c1 /httemplate/edit/process | |
parent | 63dbb8aa310e48efc0ceff2c3b8f47ea8dd07a8e (diff) |
RT#8224: allow user to disable HTML editor
Diffstat (limited to 'httemplate/edit/process')
-rwxr-xr-x | httemplate/edit/process/cust_main_note.cgi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/httemplate/edit/process/cust_main_note.cgi b/httemplate/edit/process/cust_main_note.cgi index 5127c72d1..5ba8b6032 100755 --- a/httemplate/edit/process/cust_main_note.cgi +++ b/httemplate/edit/process/cust_main_note.cgi @@ -18,6 +18,11 @@ $cgi->param('notenum') =~ /^(\d*)$/ or die "Illegal notenum: ". $cgi->param('notenum'); my $notenum = $1; +my $comment = $cgi->param('comment_html') || + join("<br />\n", + split "(?:\r|\n)+", $cgi->param('comment_plain') + ); + my $otaker = $FS::CurrentUser::CurrentUser->name; $otaker = $FS::CurrentUser::CurrentUser->username if ($otaker eq "User, Legacy"); @@ -27,7 +32,7 @@ my $new = new FS::cust_main_note ( { custnum => $custnum, _date => time, otaker => $otaker, - comments => $cgi->param('comment'), + comments => $comment, } ); my $error; |