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

Fix ba alignement

parent 73f15960
No related branches found
No related tags found
No related merge requests found
......@@ -148,6 +148,8 @@ NEW: Add restler framework. First step to build REST API into Dolibarr.
WARNING:
Dolibarr 3.9 is not yet fully compatible with PHP 7.
Following changes may create regression for some external modules, but were necessary to make
Dolibarr better:
- Deprecated Product::setPriceExpression. Use Product::update instead
......
......@@ -119,7 +119,7 @@ else
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td align="center">'.$langs->trans("Nature").'</td>';
print '<td align="center">'.$langs->trans("NbOfMembers").'</td>';
print '<td align="right">'.$langs->trans("NbOfMembers").'</td>';
print '<td align="center">'.$langs->trans("LastMemberDate").'</td>';
print '</tr>';
......@@ -135,7 +135,7 @@ foreach ($data as $val)
print '<tr '.$bc[$var].'>';
print '<td align="center">'.$memberstatic->getmorphylib($val['label']).'</td>';
print '<td align="right">'.$val['nb'].'</td>';
print '<td align="right">'.dol_print_date($val['lastdate'],'dayhour').'</td>';
print '<td align="center">'.dol_print_date($val['lastdate'],'dayhour').'</td>';
print '</tr>';
$oldyear=$year;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment