mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Fix recursion checkbox position
This commit is contained in:
parent
08911d370f
commit
7c2625fddf
@ -315,7 +315,20 @@ html_print_select_groups(
|
|||||||
'',
|
'',
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
echo '</div>';
|
echo '</div></td>';
|
||||||
|
|
||||||
|
// Recursion checkbox.
|
||||||
|
echo '<td>';
|
||||||
|
echo __('Recursion').' ';
|
||||||
|
html_print_checkbox(
|
||||||
|
'recursion',
|
||||||
|
1,
|
||||||
|
$recursion,
|
||||||
|
false,
|
||||||
|
false,
|
||||||
|
'this.form.submit()'
|
||||||
|
);
|
||||||
|
echo '</td>';
|
||||||
echo '<td>';
|
echo '<td>';
|
||||||
echo __('Show Agents').' ';
|
echo __('Show Agents').' ';
|
||||||
$fields = [
|
$fields = [
|
||||||
@ -346,19 +359,6 @@ foreach ($pre_fields as $key => $value) {
|
|||||||
|
|
||||||
html_print_select($fields, 'os', $os, 'this.form.submit()', 'All', 0);
|
html_print_select($fields, 'os', $os, 'this.form.submit()', 'All', 0);
|
||||||
|
|
||||||
echo '</td>';
|
|
||||||
|
|
||||||
echo '<td>';
|
|
||||||
echo __('Recursion').' ';
|
|
||||||
html_print_checkbox(
|
|
||||||
'recursion',
|
|
||||||
1,
|
|
||||||
$recursion,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
'this.form.submit()'
|
|
||||||
);
|
|
||||||
|
|
||||||
echo '</td><td>';
|
echo '</td><td>';
|
||||||
echo __('Search').' ';
|
echo __('Search').' ';
|
||||||
html_print_input_text('search', $search, '', 12);
|
html_print_input_text('search', $search, '', 12);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user