diff options
author | mark <mark> | 2012-02-19 00:34:44 +0000 |
---|---|---|
committer | mark <mark> | 2012-02-19 00:34:44 +0000 |
commit | e010976ba33c00bb2b97d677f610e4b19571feaf (patch) | |
tree | 38df4dd0e9f525829fb7373b7783442a9d8170a1 /rt/share/html/Elements/SelectCustomerClass | |
parent | e67988848e92af19719fe7c06c589e3b7b46d058 (diff) |
improve customer field access in RT queries, #16490
Diffstat (limited to 'rt/share/html/Elements/SelectCustomerClass')
-rw-r--r-- | rt/share/html/Elements/SelectCustomerClass | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/rt/share/html/Elements/SelectCustomerClass b/rt/share/html/Elements/SelectCustomerClass deleted file mode 100644 index 1a03cba8f..000000000 --- a/rt/share/html/Elements/SelectCustomerClass +++ /dev/null @@ -1,17 +0,0 @@ -% return if ($RT::URI::freeside::IntegrationType ne 'Internal'); -<select name="<%$Name%>"> -% if ($ShowNullOption) { - <option value="">-</option> -% } -% for my $class (qsearch('cust_class', {'disabled' => ''})) { - <option value="<%$class->classnum%>" <% - $class->classnum == $Default||'' ? 'selected' : ''%> - ><%$class->classname%></option> -% } -</select> -<%init></%init> -<%args> -$ShowNullOption => 1 -$Name => undef -$Default => 0 -</%args> |