From 43b9d77341de996592c9e45dd7d41139987bc1a0 Mon Sep 17 00:00:00 2001 From: Philippe Grand Date: Sun, 13 Feb 2011 13:34:05 +0000 Subject: [PATCH] Fix: Missing parameter langs --- htdocs/core/class/html.form.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/core/class/html.form.class.php b/htdocs/core/class/html.form.class.php index 41924a7d1e5..278e649c8fb 100644 --- a/htdocs/core/class/html.form.class.php +++ b/htdocs/core/class/html.form.class.php @@ -744,7 +744,7 @@ class Form { if ($selected == $obj->rowid) { - print $contactstatic->getFullName(); + print $contactstatic->getFullName($langs); } } $i++; @@ -845,7 +845,7 @@ class Form if ($disableline) $out.= ' disabled="true"'; $out.= '>'; } - $out.= $userstatic->getFullName(); + $out.= $userstatic->getFullName($langs); //if ($obj->admin) $out.= ' *'; if ($conf->global->MAIN_SHOW_LOGIN) $out.= ' ('.$obj->login.')';