diff --git a/inc/field/dropdownfield.class.php b/inc/field/dropdownfield.class.php index d725b0d9d..077a43394 100644 --- a/inc/field/dropdownfield.class.php +++ b/inc/field/dropdownfield.class.php @@ -419,7 +419,7 @@ public function getValueForTargetText($domain, $richText): ?string { $DbUtil = new DbUtils(); $itemtype = $this->getSubItemtype(); if ($itemtype == User::class) { - $value = $DbUtil->getUserName($this->value); + $value = $DbUtil->getUserName($this->value, 0, true); } else { $value = Dropdown::getDropdownName($DbUtil->getTableForItemType($itemtype), $this->value); }