Strip les quotes dans le nom de la societe

This commit is contained in:
Rodolphe Quiedeville 2004-12-20 11:19:28 +00:00
parent d48badecde
commit 06b68ad6d8
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ if ($result)
$objp = $db->fetch_object( $i);
$info_box_contents[$i][0] = array('align' => 'left',
'text' => $objp->nom,
'text' => stripslashes($objp->nom),
'url' => DOL_URL_ROOT."/comm/fiche.php?socid=".$objp->idp);
$i++;

View File

@ -47,7 +47,7 @@ if ($result)
$objp = $db->fetch_object( $i);
$info_box_contents[$i][0] = array('align' => 'left',
'text' => $objp->nom,
'text' => stripslashes($objp->nom),
'url' => DOL_URL_ROOT."/comm/prospect/fiche.php?id=".$objp->idp);
$i++;