Now the filter form is hidden by default

This commit is contained in:
Alejandro Gallardo Escobar 2015-02-04 12:47:47 +01:00
parent 4e04c7afea
commit 7b80a059ef
1 changed files with 6 additions and 3 deletions

View File

@ -188,9 +188,12 @@ $table->data[] = $row;
enterprise_hook('open_meta_frame'); enterprise_hook('open_meta_frame');
if (!$strict_acl) { if (!$strict_acl) {
echo '<form id="tree_search" method="post" action="index.php?sec=monitoring&sec2=operation/tree&refr=0&tab='.$tab.'&pure='.$config['pure'].'">'; $form_html = '<form id="tree_search" method="post" action="index.php?sec=monitoring&sec2=operation/tree&refr=0&tab='.$tab.'&pure='.$config['pure'].'">';
html_print_table($table); $form_html .= html_print_table($table, true);
echo '</form>'; $form_html .= '</form>';
echo "<br>";
ui_toggle($form_html, __('Tree search'));
} }
// --------------------- form filter ----------------------------------- // --------------------- form filter -----------------------------------