Look and feel

This commit is contained in:
Laurent Destailleur 2020-04-19 15:52:43 +02:00
parent 7b68d4260c
commit 08260cb7a4

View File

@ -1618,7 +1618,9 @@ else
// Hierarchy
print '<tr><td>'.$langs->trans("HierarchicalResponsible").'</td>';
print '<td>';
if (empty($object->fk_user)) print $langs->trans("None");
if (empty($object->fk_user)) {
print '<span class="opacitymedium">'.$langs->trans("None").'</span>';
}
else {
$huser = new User($db);
$huser->fetch($object->fk_user);