From 1df3ad143ebafe239ebda242f27fa57d1cccfa55 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 11 Mar 2013 17:04:59 +0100 Subject: [PATCH] Fix: Lastname lost --- htdocs/societe/tpl/linesalesrepresentative.tpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/societe/tpl/linesalesrepresentative.tpl.php b/htdocs/societe/tpl/linesalesrepresentative.tpl.php index 63892395df7..9b2867cacff 100644 --- a/htdocs/societe/tpl/linesalesrepresentative.tpl.php +++ b/htdocs/societe/tpl/linesalesrepresentative.tpl.php @@ -27,7 +27,7 @@ foreach($listsalesrepresentatives as $val) { $userstatic->id=$val['id']; - $userstatic->lastname=$val['name']; + $userstatic->lastname=$val['lastname']; $userstatic->firstname=$val['firstname']; print $userstatic->getNomUrl(1); $i++;