Correction erreur d'affichage

This commit is contained in:
Rodolphe Quiedeville 2004-07-27 09:59:21 +00:00
parent bcb741cef5
commit edcbaed6d1

View File

@ -1,5 +1,5 @@
<?PHP <?PHP
/* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -326,9 +326,12 @@ else
print '</td></tr>'; print '</td></tr>';
print '<tr><td>Libellé</td><td colspan="2">'.$product->libelle.'</td></tr>'; print '<tr><td>Libellé</td><td colspan="2">'.$product->libelle.'</td></tr>';
print '<tr><td>Prix de vente</td><td>'.price($product->price).'</td>'; print '<tr><td>Prix de vente</td><td>'.price($product->price).'</td>';
if ($product->type == 1) { if ($product->type == 0)
{
$nblignefour=4; $nblignefour=4;
} else { }
else
{
$nblignefour=3; $nblignefour=3;
} }
print '<td valign="top" rowspan="'.$nblignefour.'">'; print '<td valign="top" rowspan="'.$nblignefour.'">';