diff --git a/htdocs/comm/action/fiche.php b/htdocs/comm/action/fiche.php
index 3c641be8566..7aae59913ce 100644
--- a/htdocs/comm/action/fiche.php
+++ b/htdocs/comm/action/fiche.php
@@ -498,12 +498,13 @@ if ($action == 'create')
print '
';
// Affected by
- print '| '.$langs->trans("ActionAffectedTo").' | ';
+ $var=false;
+ print ' |
| '.$langs->trans("ActionAffectedTo").' | ';
$form->select_users(GETPOST("affectedto")?GETPOST("affectedto"):($actioncomm->usertodo->id > 0 ? $actioncomm->usertodo : $user),'affectedto',1);
print ' |
';
// Realised by
- print '| '.$langs->trans("ActionDoneBy").' | ';
+ print ' |
| '.$langs->trans("ActionDoneBy").' | ';
$form->select_users(GETPOST("doneby")?GETPOST("doneby"):($percent==100?$actioncomm->userdone:0),'doneby',1);
print ' |
';
@@ -719,17 +720,18 @@ if ($id)
print '
';
// Input by
- print '| '.$langs->trans("ActionAskedBy").' | ';
+ $var=false;
+ print ' |
| '.$langs->trans("ActionAskedBy").' | ';
print $act->author->getNomUrl(1);
print ' |
';
// Affected to
- print '| '.$langs->trans("ActionAffectedTo").' | ';
+ print ' |
| '.$langs->trans("ActionAffectedTo").' | ';
print $form->select_dolusers($act->usertodo->id>0?$act->usertodo->id:-1,'affectedto',1);
print ' |
';
// Realised by
- print '| '.$langs->trans("ActionDoneBy").' | ';
+ print ' |
| '.$langs->trans("ActionDoneBy").' | ';
print $form->select_dolusers($act->userdone->id> 0?$act->userdone->id:-1,'doneby',1);
print ' |
';
@@ -865,18 +867,19 @@ if ($id)
print '
';
// Input by
- print '| '.$langs->trans("ActionAskedBy").' | ';
+ $var=false;
+ print ' |
| '.$langs->trans("ActionAskedBy").' | ';
if ($act->author->id > 0) print $act->author->getNomUrl(1);
else print ' ';
print ' |
';
// Affecte a
- print '| '.$langs->trans("ActionAffectedTo").' | ';
+ print ' |
| '.$langs->trans("ActionAffectedTo").' | ';
if ($act->usertodo->id > 0) print $act->usertodo->getNomUrl(1);
print ' |
';
// Done by
- print '| '.$langs->trans("ActionDoneBy").' | ';
+ print ' |
| '.$langs->trans("ActionDoneBy").' | ';
if ($act->userdone->id > 0) print $act->userdone->getNomUrl(1);
print ' |
';