diff options
author | mark <mark> | 2010-05-24 23:54:58 +0000 |
---|---|---|
committer | mark <mark> | 2010-05-24 23:54:58 +0000 |
commit | b7c314a198c60a6f9236950994113aa422aa77ff (patch) | |
tree | 17d407e55123dd937a90cec197e752e2b79fc4aa /httemplate/edit/process/cust_main_note.cgi | |
parent | 71b3acdcf8c9a6702057bbeecb58d7a685d6c191 (diff) |
RT#8224: allow user to disable HTML editor
Diffstat (limited to 'httemplate/edit/process/cust_main_note.cgi')
-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 f09189aa9..f904c5968 100755 --- a/httemplate/edit/process/cust_main_note.cgi +++ b/httemplate/edit/process/cust_main_note.cgi @@ -18,12 +18,17 @@ $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 $new = new FS::cust_main_note ( { notenum => $notenum, custnum => $custnum, _date => time, usernum => $FS::CurrentUser::CurrentUser->usernum, - comments => scalar($cgi->param('comment')), + comments => $comment, } ); my $error; |