Encode en utf8 le nom de la ville et de la socit
This commit is contained in:
parent
370573be78
commit
04ba55720e
@ -135,10 +135,10 @@ class Contact
|
||||
{
|
||||
$soc = new Societe($this->db);
|
||||
$soc->fetch($this->socid);
|
||||
$info["o"] = $soc->nom;
|
||||
$info["o"] = utf8_encode($soc->nom);
|
||||
if ($soc->ville)
|
||||
{
|
||||
$info["l"] = $soc->ville;
|
||||
$info["l"] = utf8_encode($soc->ville);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user