From 991455459f5606a8b16b297a561a59d48af45420 Mon Sep 17 00:00:00 2001 From: David Durieux Date: Sat, 18 Jan 2020 18:58:01 +0100 Subject: [PATCH] Fix display the rand of dropdown in the group search form --- inc/deploygroup.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/deploygroup.class.php b/inc/deploygroup.class.php index 60a7185867..4775b572d4 100644 --- a/inc/deploygroup.class.php +++ b/inc/deploygroup.class.php @@ -460,7 +460,7 @@ static function getSpecificValueToDisplay($field, $values, array $options = []) static function dropdownGroupType($name = 'type', $value = 'STATIC') { $group = new self(); return Dropdown::showFromArray($name, $group->grouptypes, - ['value'=>$value]); + ['value'=>$value, 'display'=>false]); }