diff --git a/htdocs/commande/list.php b/htdocs/commande/list.php
index 153250534fd..ef2d9748b8e 100644
--- a/htdocs/commande/list.php
+++ b/htdocs/commande/list.php
@@ -1680,7 +1680,7 @@ if ($resql) {
// Author
if (!empty($arrayfields['u.login']['checked'])) {
print '
';
- if ($userstatic->id) {
+ if ($userstatic->id > 0) {
print $userstatic->getLoginUrl(1);
} else {
print ' ';
@@ -1704,7 +1704,6 @@ if ($resql) {
// We print only number
print $nbofsalesrepresentative;
} elseif ($nbofsalesrepresentative > 0) {
- $userstatic = new User($db);
$j = 0;
foreach ($listsalesrepresentatives as $val) {
$userstatic->id = $val['id'];
|