mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-29 00:34:46 +02:00
Merge branch 'ent-8632-colocar-recursion-bien-modificar-agente' into 'develop'
Fix recursion checkbox position See merge request artica/pandorafms!4840
This commit is contained in:
commit
b2acb41c10
@ -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