Fix: convert line delimiters

This commit is contained in:
Regis Houssin
2013-06-24 17:34:22 +02:00
parent cb9dcfa369
commit 05bd035488
142 changed files with 2115 additions and 2115 deletions

View File

@@ -2026,19 +2026,19 @@ class Commande extends CommonOrder
{
$obj = $this->db->fetch_object($result);
if ($shortlist == 1)
{
$ga[$obj->cid] = $obj->ref;
}
else if ($shortlist == 2)
{
$ga[$obj->cid] = $obj->ref.' ('.$obj->name.')';
}
else
{
$ga[$i]['id'] = $obj->cid;
$ga[$i]['ref'] = $obj->ref;
$ga[$i]['name'] = $obj->name;
if ($shortlist == 1)
{
$ga[$obj->cid] = $obj->ref;
}
else if ($shortlist == 2)
{
$ga[$obj->cid] = $obj->ref.' ('.$obj->name.')';
}
else
{
$ga[$i]['id'] = $obj->cid;
$ga[$i]['ref'] = $obj->ref;
$ga[$i]['name'] = $obj->name;
}
$i++;
}