diff options
author | ivan <ivan> | 2009-02-14 00:41:24 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-02-14 00:41:24 +0000 |
commit | 196adec5da84e3932aa6b2654b6f1532d833616b (patch) | |
tree | 1b063558b69851dbc8c5d4b26f5e4ae8f6f8ff69 /httemplate/elements/select-agent.html | |
parent | 38c9750a1c91c591b2c6df5c5dbcfa60dd8eb682 (diff) |
clean up select-agent agent virtualization, RT#1405
Diffstat (limited to 'httemplate/elements/select-agent.html')
-rw-r--r-- | httemplate/elements/select-agent.html | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/httemplate/elements/select-agent.html b/httemplate/elements/select-agent.html index d8ab50080..897c98248 100644 --- a/httemplate/elements/select-agent.html +++ b/httemplate/elements/select-agent.html @@ -1,10 +1,11 @@ <% include( '/elements/select-table.html', - 'table' => 'agent', - 'name_col' => 'agent', - 'value' => $agentnum || '', - 'empty_label' => 'all', - 'hashref' => { 'disabled' => '' }, - 'order_by' => ' ORDER BY agent', + 'table' => 'agent', + 'name_col' => 'agent', + 'value' => $agentnum || '', + 'agent_virt' => 1, + 'empty_label' => 'all', + 'hashref' => { 'disabled' => '' }, + 'order_by' => ' ORDER BY agent', 'disable_empty' => $disable_empty, %opt, ) @@ -18,12 +19,13 @@ $opt{'records'} = delete $opt{'agents'} if $opt{'agents'}; my $curuser = $FS::CurrentUser::CurrentUser; -my $disable_empty = 1; -if ( $opt{'agent_null_right'} && - $curuser->access_right($opt{'agent_null_right'}) - ) -{ - $disable_empty--; +my $disable_empty = 0; +if ( $opt{'agent_null_right'} ) { + if ( $curuser->access_right($opt{'agent_null_right'}) ) { + $disable_empty = 0; + } else { + $disable_empty = 1; + } } </%init> |