#13051 hide policies filter in open
This commit is contained in:
parent
3546c39aef
commit
faece59451
|
@ -430,23 +430,26 @@ if (function_exists('policies_get_policies') === true) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$table->data[2][1] = html_print_label_input_block(
|
if (enterprise_installed() === true) {
|
||||||
__('Policies'),
|
$table->data[2][1] = html_print_label_input_block(
|
||||||
html_print_select(
|
__('Policies'),
|
||||||
$fields,
|
html_print_select(
|
||||||
'policies',
|
$fields,
|
||||||
$policies,
|
'policies',
|
||||||
'this.form.submit()',
|
$policies,
|
||||||
__('All'),
|
'this.form.submit()',
|
||||||
0,
|
__('All'),
|
||||||
true,
|
0,
|
||||||
false,
|
true,
|
||||||
true,
|
false,
|
||||||
'w100p',
|
true,
|
||||||
false,
|
'w100p',
|
||||||
'width: 100%'
|
false,
|
||||||
)
|
'width: 100%'
|
||||||
);
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$custom_fields = db_get_all_fields_in_table('tagent_custom_fields');
|
$custom_fields = db_get_all_fields_in_table('tagent_custom_fields');
|
||||||
if ($custom_fields === false) {
|
if ($custom_fields === false) {
|
||||||
|
|
Loading…
Reference in New Issue