Skip to content
Snippets Groups Projects
Commit 4cc13064 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: W3C

parent 0438bee3
No related branches found
No related tags found
No related merge requests found
...@@ -159,7 +159,7 @@ print '</table>'; ...@@ -159,7 +159,7 @@ print '</table>';
print '</td><td valign="top" width="70%" class="notopnoleftnoright">'; print '</td><td valign="top" width="70%" class="notopnoleftnoright">';
/* /*
* Derniers produits/services en vente * Last modified products
*/ */
$max=15; $max=15;
$sql = "SELECT p.rowid, p.label, p.price, p.ref, p.fk_product_type, p.tosell, p.tobuy,"; $sql = "SELECT p.rowid, p.label, p.price, p.ref, p.fk_product_type, p.tosell, p.tobuy,";
...@@ -186,7 +186,10 @@ if ($result) ...@@ -186,7 +186,10 @@ if ($result)
print '<table class="noborder" width="100%">'; print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><td colspan="6">'.$transRecordedType.'</td></tr>'; $colnb=5;
if (empty($conf->global->PRODUIT_MULTIPRICES)) $colnb++;
print '<tr class="liste_titre"><td colspan="'.$colnb.'">'.$transRecordedType.'</td></tr>';
$var=True; $var=True;
...@@ -211,7 +214,7 @@ if ($result) ...@@ -211,7 +214,7 @@ if ($result)
} }
$var=!$var; $var=!$var;
print "<tr $bc[$var]>"; print "<tr ".$bc[$var].">";
print '<td nowrap="nowrap">'; print '<td nowrap="nowrap">';
$product_static->id=$objp->rowid; $product_static->id=$objp->rowid;
$product_static->ref=$objp->ref; $product_static->ref=$objp->ref;
...@@ -252,7 +255,7 @@ else ...@@ -252,7 +255,7 @@ else
print '</td></tr></table>'; print '</td></tr></table>';
$db->close();
llxFooter(); llxFooter();
$db->close();
?> ?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment