Fix: Missing parameter langs

This commit is contained in:
Philippe Grand 2011-02-13 13:34:05 +00:00
parent 684eddf9fe
commit 43b9d77341

View File

@ -744,7 +744,7 @@ class Form
{ {
if ($selected == $obj->rowid) if ($selected == $obj->rowid)
{ {
print $contactstatic->getFullName(); print $contactstatic->getFullName($langs);
} }
} }
$i++; $i++;
@ -845,7 +845,7 @@ class Form
if ($disableline) $out.= ' disabled="true"'; if ($disableline) $out.= ' disabled="true"';
$out.= '>'; $out.= '>';
} }
$out.= $userstatic->getFullName(); $out.= $userstatic->getFullName($langs);
//if ($obj->admin) $out.= ' *'; //if ($obj->admin) $out.= ' *';
if ($conf->global->MAIN_SHOW_LOGIN) $out.= ' ('.$obj->login.')'; if ($conf->global->MAIN_SHOW_LOGIN) $out.= ' ('.$obj->login.')';