From b2bc884ec68eebe3855ca0bdfb717c845183a4a4 Mon Sep 17 00:00:00 2001 From: Luis Date: Thu, 24 Feb 2022 15:53:56 +0000 Subject: [PATCH] Fix minor bug --- pandora_console/include/functions_groups.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_groups.php b/pandora_console/include/functions_groups.php index 58f178b770..963ee55c8f 100644 --- a/pandora_console/include/functions_groups.php +++ b/pandora_console/include/functions_groups.php @@ -567,7 +567,7 @@ function groups_get_groups_tree_recursive($groups, $trash=0, $trash2=0) $tree = $groups; foreach ($groups as $key => $group) { - if ($group === 'None') { + if ($group === __('None')) { continue; }