Fix: convert to output charset

This commit is contained in:
Regis Houssin 2009-09-18 12:24:47 +00:00
parent ccb7b35beb
commit 6cfc7f45c6

View File

@ -790,7 +790,7 @@ class Contact extends CommonObject
if ($this->firstname && $this->name) $ret.=' ';
if ($this->firstname) $ret.=$this->firstname;
}
return trim($ret);
return $langs->convToOutputCharset(trim($ret));
}