Fix: utf-8

This commit is contained in:
Regis Houssin 2009-12-14 22:26:57 +00:00
parent 60ac6c5705
commit 9836445850

View File

@ -218,7 +218,7 @@ if ($id > 0 || ! empty($ref))
while ($i < $num) while ($i < $num)
{ {
$objp = $db->fetch_object($resql); $objp = $db->fetch_object($resql);
// On n'affiche pas les produits personnalis<EFBFBD>s // On n'affiche pas les produits personnalises
if ($objp->fk_product) if ($objp->fk_product)
{ {
$var=!$var; $var=!$var;
@ -277,7 +277,7 @@ if ($id > 0 || ! empty($ref))
$sql.= " WHERE cfd.fk_commande = ".$commande->id; $sql.= " WHERE cfd.fk_commande = ".$commande->id;
$sql.= " AND cfd.fk_product = p.rowid"; $sql.= " AND cfd.fk_product = p.rowid";
$sql.= " AND cfd.fk_entrepot = e.rowid"; $sql.= " AND cfd.fk_entrepot = e.rowid";
$sql.= " ORDER BY cfd.rowid ASC;"; $sql.= " ORDER BY cfd.rowid ASC";
$resql = $db->query($sql); $resql = $db->query($sql);
if ($resql) if ($resql)
@ -376,7 +376,7 @@ if ($id > 0 || ! empty($ref))
} }
else else
{ {
// Commande non trouv<EFBFBD>e // Commande non trouvee
dol_print_error($db); dol_print_error($db);
} }
} }