Fix missing label
This commit is contained in:
parent
bf173fdbf1
commit
c559e5cc3e
@ -223,7 +223,7 @@ if ($resql) {
|
|||||||
print '<div class="div-table-responsive-no-min">';
|
print '<div class="div-table-responsive-no-min">';
|
||||||
print '<table class="noborder centpercent">';
|
print '<table class="noborder centpercent">';
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<th colspan="4">'.$langs->trans("LatestModifiedProjects", $max).'</th>';
|
print '<th colspan="5">'.$langs->trans("LatestModifiedProjects", $max).'</th>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|
||||||
$num = $db->num_rows($resql);
|
$num = $db->num_rows($resql);
|
||||||
@ -277,12 +277,22 @@ if ($resql) {
|
|||||||
|
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
|
// Label
|
||||||
|
print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($obj->title).'">';
|
||||||
|
print $projectstatic->title;
|
||||||
|
print '</td>';
|
||||||
|
|
||||||
|
// Thirdparty
|
||||||
print '<td class="nowrap">';
|
print '<td class="nowrap">';
|
||||||
if ($companystatic->id > 0) {
|
if ($companystatic->id > 0) {
|
||||||
print $companystatic->getNomUrl(1, 'company', 16);
|
print $companystatic->getNomUrl(1, 'company', 16);
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
|
// Date
|
||||||
print '<td>'.dol_print_date($db->jdate($obj->datem), 'day').'</td>';
|
print '<td>'.dol_print_date($db->jdate($obj->datem), 'day').'</td>';
|
||||||
|
|
||||||
|
// Status
|
||||||
print '<td class="right">'.$projectstatic->LibStatut($obj->status, 3).'</td>';
|
print '<td class="right">'.$projectstatic->LibStatut($obj->status, 3).'</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
$i++;
|
$i++;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user