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/cust_main_note.cgi | |
parent | 63dbb8aa310e48efc0ceff2c3b8f47ea8dd07a8e (diff) |
RT#8224: allow user to disable HTML editor
Diffstat (limited to 'httemplate/edit/cust_main_note.cgi')
-rwxr-xr-x | httemplate/edit/cust_main_note.cgi | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/httemplate/edit/cust_main_note.cgi b/httemplate/edit/cust_main_note.cgi index e2501cb54..439c84414 100755 --- a/httemplate/edit/cust_main_note.cgi +++ b/httemplate/edit/cust_main_note.cgi @@ -6,11 +6,15 @@ <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>"> <INPUT TYPE="hidden" NAME="notenum" VALUE="<% $notenum %>"> -<% include('/elements/htmlarea.html', 'field' => 'comment', +% if( $FS::CurrentUser::CurrentUser->option('disable_html_editor') ) { + <TEXTAREA NAME="comment_plain" ROWS="12" COLS="60"><% + join '', split /<br \/>| /, $comment + %></TEXTAREA> +% } +% else { +<% include('/elements/htmlarea.html', 'field' => 'comment_html', 'curr_value' => $comment) %> -% #<TEXTAREA NAME="comment" ROWS="12" COLS="60"> -% # <% $comment %> -% #</TEXTAREA> +% } <BR><BR> <INPUT TYPE="submit" VALUE="<% $notenum ? "Apply Changes" : "Add Note" %>"> |