This commit is contained in:
Laurent Destailleur 2021-10-26 14:31:55 +02:00
parent da2ce063b3
commit fcdfd370ba

View File

@ -706,12 +706,12 @@ if ($step == 3 && $datatoimport) {
print $out;
print '</div>';
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
print '<table class="noborder centpercent" width="100%" cellpadding="4">';
// Search available imports
$filearray = dol_dir_list($conf->import->dir_temp, 'files', 0, '', '', 'name', SORT_DESC);
if (count($filearray) > 0) {
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you dont need reserved height for your table
print '<table class="noborder centpercent" width="100%" cellpadding="4">';
$dir = $conf->import->dir_temp;
// Search available files to import
@ -752,10 +752,10 @@ if ($step == 3 && $datatoimport) {
print '</td>';
print '</tr>';
}
}
print '</table>';
print '</div>';
print '</table>';
print '</div>';
}
print '</form>';
}