diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-10-16 15:12:35 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-10-16 15:12:35 -0700 |
commit | e322fbb08d0f837be3f3f8e7c92a4a5bc75030ad (patch) | |
tree | 9ee34d97abcf6910eede9723996900c35db0db55 /httemplate/edit/cust_main_note.cgi | |
parent | 1c3dfc13e3eaf4a0d2fc213111dcbf12608ee81c (diff) | |
parent | f81c236b2f3b5fe8777b04ee78b793b301eef9fd (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/edit/cust_main_note.cgi')
-rwxr-xr-x | httemplate/edit/cust_main_note.cgi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/httemplate/edit/cust_main_note.cgi b/httemplate/edit/cust_main_note.cgi index c295e0d7a..cc93f2498 100755 --- a/httemplate/edit/cust_main_note.cgi +++ b/httemplate/edit/cust_main_note.cgi @@ -6,14 +6,17 @@ <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>"> <INPUT TYPE="hidden" NAME="notenum" VALUE="<% $notenum %>"> -% if ($conf->exists('note-classes') && $conf->config('note-classes') > 0) { +% if ($conf->exists('note-classes') && $conf->config('note-classes')) { +% my %includeopts = $conf->config('note-classes') eq 'Enabled' +% ? ('empty_label' => '(unclassified)') +% : ('disable_empty' => 1); # eq 'Required' Class <% include( '/elements/select-table.html', 'table' => 'cust_note_class', 'name_col' => 'classname', 'curr_value' => $classnum, - 'empty_label' => '(none)', 'hashref' => { 'disabled' => '' }, + %includeopts, ) %> <BR> % } |