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

Fix: Missing closing tr

parent cff713ad
No related branches found
No related tags found
No related merge requests found
......@@ -1435,7 +1435,7 @@ elseif (! empty($object->id))
print '</tr>';
// Delivery date planed
print '<tr><td height="10">';
print '<tr><td>';
print '<table class="nobordernopadding" width="100%"><tr><td>';
print $langs->trans('DateDeliveryPlanned');
print '</td>';
......@@ -1456,13 +1456,13 @@ elseif (! empty($object->id))
{
print $object->date_livraison ? dol_print_date($object->date_livraison,'daytext') : '&nbsp;';
}
print '</td>';
print '</td></tr>';
// Project
if (! empty($conf->projet->enabled))
{
$langs->load('projects');
print '<tr><td height="10">';
print '<tr><td>';
print '<table class="nobordernopadding" width="100%"><tr><td>';
print $langs->trans('Project');
print '</td>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment