Merge pull request #25009 from atm-maxime/fix_mails_template_list

Fix mails template list colspan when no records
This commit is contained in:
Laurent Destailleur
2023-06-08 23:50:46 +02:00
committed by GitHub

View File

@@ -1306,7 +1306,7 @@ if ($num) {
// If no record found
if ($nbqualified == 0) {
$colspan = 10;
$colspan = 12;
print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
}