fixed minor error pandora_enterprise#9135

This commit is contained in:
Daniel Barbero 2022-12-13 09:30:56 +01:00
parent a0ddad63b8
commit cbc598eb03
1 changed files with 6 additions and 1 deletions

View File

@ -1718,6 +1718,10 @@ $inputs[] = $in;
// Free search.
$data = html_print_input_text('search', $search, '', '', 255, true);
// Search recursive groups.
$data .= ui_print_help_tip(
__('Search for elements NOT containing given text.'),
true
);
$data .= html_print_checkbox_switch(
'not_search',
$not_search,
@ -1728,7 +1732,8 @@ $data .= html_print_checkbox_switch(
true
);
$in = '<div class="filter_input filter_input_not_search"><label>'.__('Free search').'</label>';
$in .= $data.'</div>';
$in .= $data;
$in .= '</div>';
$inputs[] = $in;
if (is_array($severity) === false) {