Merge branch '6.0' of git@github.com:Dolibarr/dolibarr.git into develop

This commit is contained in:
Laurent Destailleur 2017-09-14 08:23:42 +02:00
commit d225cce446

View File

@ -441,7 +441,8 @@ if ($socid && $action != 'edit' && $action != "create")
$var = false; $var = false;
if (is_array($rib_list)) if (is_array($rib_list))
{ {
print '<table class="liste" width="100%">'; print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
print '<table class="liste" width="100%">';
print '<tr class="liste_titre">'; print '<tr class="liste_titre">';
print_liste_field_titre("LabelRIB"); print_liste_field_titre("LabelRIB");
@ -618,6 +619,7 @@ if ($socid && $action != 'edit' && $action != "create")
} }
print '</table>'; print '</table>';
print '</div>';
} else { } else {
dol_print_error($db); dol_print_error($db);
} }