diff --git a/htdocs/projet/tasks/time.php b/htdocs/projet/tasks/time.php
index 676b17a5951..6e7ab74b941 100644
--- a/htdocs/projet/tasks/time.php
+++ b/htdocs/projet/tasks/time.php
@@ -296,22 +296,22 @@ if ($id > 0 || ! empty($ref))
print '
| '.$langs->trans("DateStart").' | ';
print dol_print_date($object->date_start,'dayhour');
print ' |
';
-
+
// Date end
print '| '.$langs->trans("DateEnd").' | ';
print dol_print_date($object->date_end,'dayhour');
print ' |
';
-
+
// Planned workload
print '| '.$langs->trans("PlannedWorkload").' | ';
print convertSecondToTime($object->planned_workload,'allhourmin');
print ' |
';
-
+
// Progress declared
print '| '.$langs->trans("ProgressDeclared").' | ';
print $object->progress.' %';
print ' |
';
-
+
// Progress calculated
print '| '.$langs->trans("ProgressCalculated").' | ';
if ($object->planned_workload)
@@ -322,7 +322,7 @@ if ($id > 0 || ! empty($ref))
}
else print '';
print ' |
';
-
+
// Project
if (empty($withproject))
{
@@ -400,11 +400,11 @@ if ($id > 0 || ! empty($ref))
// Contributor
print '';
- print img_object('','user');
+ print img_object('','user','class="hideonsmartphone"');
$contactsoftask=$object->getListContactId('internal');
if (count($contactsoftask)>0) {
$userid=$contactsoftask[0];
- $form->select_users($userid,'userid',0,'',0,'',$contactsoftask);
+ print $form->select_dolusers($userid,'userid',0,'',0,'',$contactsoftask);
}else {
print img_error($langs->trans('FirstAddRessourceToAllocateTime')).$langs->trans('FirstAddRessourceToAllocateTime');
}
@@ -506,7 +506,7 @@ if ($id > 0 || ! empty($ref))
$contactsoftask[]=$task_time->fk_user;
}
if (count($contactsoftask)>0) {
- $form->select_users($task_time->fk_user,'userid_line',0,'',0,'',$contactsoftask);
+ print $form->select_dolusers($task_time->fk_user,'userid_line',0,'',0,'',$contactsoftask);
}else {
print img_error($langs->trans('FirstAddRessourceToAllocateTime')).$langs->trans('FirstAddRessourceToAllocateTime');
}
|