Merge pull request #32862 from FHenry/20_fix_warning

fix: php 8 warning
This commit is contained in:
Laurent Destailleur
2025-02-05 00:03:20 +01:00
committed by GitHub

View File

@@ -95,7 +95,7 @@ if (!getDolGlobalString('EXPENSEREPORT_DISABLE_ATTACHMENT_ON_LINES')) {
}
print '<div class="photoref backgroundblank">';
print $thumbshown ? $thumbshown : img_mime($minifile);
print $thumbshown ? $thumbshown : (empty($minifile) ? '' : img_mime($minifile));
print '</div>';
if (empty($urlforhref) || empty($thumbshown)) {