diff options
| author | Mark Wells <mark@freeside.biz> | 2016-10-15 21:06:04 -0700 |
|---|---|---|
| committer | Mark Wells <mark@freeside.biz> | 2016-10-15 21:06:04 -0700 |
| commit | 6a509099343ed155525c4304f1ad742cc6e4ce59 (patch) | |
| tree | e8b05c436b3bb0dbe0e331e728dc5b36e90b8c0a /httemplate/edit | |
| parent | fbfd9445bb00c2a1c7f4386878edead9b50c482f (diff) | |
| parent | d4114381c5d95e8acd0d0fc2bbc2b3528bde2ecf (diff) | |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/edit')
| -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> % } |
