Fix: missing end parenthesis

This commit is contained in:
Regis Houssin 2012-06-11 22:38:52 +02:00
parent bf379fc242
commit 06ef4ea4c4

View File

@ -42,8 +42,8 @@ if ($user->societe_id > 0) accessforbidden();
llxHeader('','Ventilation'); llxHeader('','Ventilation');
/* /*
* Lignes de factures * Lignes de factures
*/ */
$sortfield = GETPOST("sortfield",'alpha'); $sortfield = GETPOST("sortfield",'alpha');
$sortorder = GETPOST("sortorder",'alpha'); $sortorder = GETPOST("sortorder",'alpha');
@ -69,7 +69,7 @@ if ($result)
$num_lignes = $db->num_rows($result); $num_lignes = $db->num_rows($result);
$i = 0; $i = 0;
print_barre_liste($langs->trans("InvoiceLinesToDispatch",$page,"liste.php","",$sortfield,$sortorder,'',$num_lignes); print_barre_liste($langs->trans("InvoiceLinesToDispatch"),$page,"liste.php","",$sortfield,$sortorder,'',$num_lignes);
print '<table class="noborder" width="100%">'; print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><td>'.$langs->trans("Invoice").'</td>'; print '<tr class="liste_titre"><td>'.$langs->trans("Invoice").'</td>';
@ -124,7 +124,7 @@ else
{ {
print $db->error(); print $db->error();
} }
$db->close();
llxFooter(); llxFooter();
$db->close();
?> ?>