diff --git a/htdocs/comm/propal/list.php b/htdocs/comm/propal/list.php
index 43c83117457..7f738f84ebe 100644
--- a/htdocs/comm/propal/list.php
+++ b/htdocs/comm/propal/list.php
@@ -1705,14 +1705,13 @@ if ($resql) {
}
}
- $userstatic->id = $obj->fk_user_author;
- $userstatic->login = $obj->login;
+ $userstatic->fetch($obj->fk_user_author);
// Author
if (!empty($arrayfields['u.login']['checked'])) {
- print '
';
+ print ' | ';
if ($userstatic->id) {
- print $userstatic->getLoginUrl(1);
+ print $userstatic->getNomUrl(-1);
}
print " | \n";
if (!$i) {
@@ -1744,7 +1743,8 @@ if ($resql) {
$userstatic->entity = $val['entity'];
$userstatic->photo = $val['photo'];
$userstatic->login = $val['login'];
- $userstatic->phone = $val['phone'];
+ $userstatic->user_mobile = $val['user_mobile'];
+ $userstatic->user_mobile = $val['user_mobile'];
$userstatic->job = $val['job'];
$userstatic->gender = $val['gender'];
//print '':
diff --git a/htdocs/commande/list.php b/htdocs/commande/list.php
index 3747b2107b2..d14fe1ae460 100644
--- a/htdocs/commande/list.php
+++ b/htdocs/commande/list.php
@@ -1668,14 +1668,13 @@ if ($resql) {
}
}
- $userstatic->id = $obj->fk_user_author;
- $userstatic->login = $obj->login;
+ $userstatic->fetch($obj->fk_user_author);
// Author
if (!empty($arrayfields['u.login']['checked'])) {
- print '
';
+ print ' | ';
if ($userstatic->id) {
- print $userstatic->getLoginUrl(1);
+ print $userstatic->getNomUrl(-1);
} else {
print ' ';
}
diff --git a/htdocs/compta/facture/list.php b/htdocs/compta/facture/list.php
index 14b0383fa8d..e5c08993b9f 100644
--- a/htdocs/compta/facture/list.php
+++ b/htdocs/compta/facture/list.php
@@ -1880,11 +1880,10 @@ if ($resql) {
// Author
if (!empty($arrayfields['u.login']['checked'])) {
- $userstatic->id = $obj->fk_user_author;
- $userstatic->login = $obj->login;
- print ' | ';
+ $userstatic->fetch($obj->fk_user_author);
+ print ' | ';
if ($userstatic->id) {
- print $userstatic->getLoginUrl(1);
+ print $userstatic->getNomUrl(-1);
} else {
print ' ';
}
diff --git a/htdocs/projet/list.php b/htdocs/projet/list.php
index a9f17f5439b..1edeb0816c2 100644
--- a/htdocs/projet/list.php
+++ b/htdocs/projet/list.php
@@ -1041,7 +1041,9 @@ while ($i < min($num, $limit)) {
$userstatic->entity = $val['entity'];
$userstatic->photo = $val['photo'];
$userstatic->login = $val['login'];
- $userstatic->phone = $val['phone'];
+ $userstatic->office_phone = $val['office_phone'];
+ $userstatic->office_fax = $val['office_fax'];
+ $userstatic->user_mobile = $val['user_mobile'];
$userstatic->job = $val['job'];
$userstatic->gender = $val['gender'];
print ($nbofsalesrepresentative < 2) ? $userstatic->getNomUrl(-1, '', 0, 0, 12) : $userstatic->getNomUrl(-2);
|