From 27c2fa0860bddca8c266d6a3a5f2b5931b8db1cf Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 5 Oct 2020 11:52:41 +0200 Subject: [PATCH] minor fix --- pandora_console/godmode/groups/configure_group.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/groups/configure_group.php b/pandora_console/godmode/groups/configure_group.php index 7fe4d6e876..72fe425fca 100644 --- a/pandora_console/godmode/groups/configure_group.php +++ b/pandora_console/godmode/groups/configure_group.php @@ -145,7 +145,8 @@ if ($id_group) { $table->data[2][1] = __('You have not access to the parent.').html_print_input_hidden('id_parent', $id_parent, true); } else { - $table->data[2][1] = html_print_select_groups( + $table->data[2][1] = '
'; + $table->data[2][1] .= html_print_select_groups( false, 'AR', true, @@ -163,9 +164,12 @@ if ($id_group) { false, $id_group ); + $table->data[2][1] .= '
'; } } else { - $table->data[2][1] = html_print_select_groups(false, 'AR', true, 'id_parent', $id_parent, '', '', '', true); + $table->data[2][1] = '
'; + $table->data[2][1] .= html_print_select_groups(false, 'AR', true, 'id_parent', $id_parent, '', '', '', true); + $table->data[2][1] .= '
'; } if ($acl_parent) {