This commit is contained in:
Laurent Destailleur 2021-10-10 21:25:46 +02:00
parent 874731af84
commit 7180f5eeff
5 changed files with 9 additions and 9 deletions

View File

@ -1542,11 +1542,11 @@ class FormFile
if (empty($disablemove)) {
$colspan++; // 6 columns or 7
}
print '<tr class="oddeven"><td colspan="'.$colspan.'" class="opacitymedium">';
print '<tr class="oddeven"><td colspan="'.$colspan.'">';
if (empty($textifempty)) {
print $langs->trans("NoFileFound");
print '<span class="opacitymedium">'.$langs->trans("NoFileFound").'</span>';
} else {
print $textifempty;
print '<span class="opacitymedium">'.$textifempty.'</span>';
}
print '</td></tr>';
}
@ -2096,8 +2096,8 @@ class FormFile
print "</tr>\n";
}
if ($nboflinks == 0) {
print '<tr class="oddeven"><td colspan="5" class="opacitymedium">';
print $langs->trans("NoLinkFound");
print '<tr class="oddeven"><td colspan="5">';
print '<span class="opacitymedium">'.$langs->trans("NoLinkFound").'</span>';
print '</td></tr>';
}
print "</table>";

View File

@ -879,7 +879,7 @@ function show_projects($conf, $langs, $db, $object, $backtopage = '', $nocreatel
$i++;
}
} else {
print '<tr class="oddeven"><td colspan="8" class="opacitymedium">'.$langs->trans("None").'</td></tr>';
print '<tr class="oddeven"><td colspan="8"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
}
$db->free($result);
} else {

View File

@ -233,7 +233,7 @@ if ($action == 'convertimgwebp' && $permtoadd) {
if (empty($action) || $action == 'editfile' || $action == 'file_manager' || preg_match('/refresh/i', $action) || $action == 'delete') {
$langs->load("ecm");
print '<table width="100%" class="liste noborderbottom">'."\n";
print '<table class="liste centpercent">'."\n";
print '<!-- Title for manual directories -->'."\n";
print '<tr class="liste_titre">'."\n";

View File

@ -414,7 +414,7 @@ if ($action == 'delete_section') {
if (empty($action) || $action == 'file_manager' || preg_match('/refresh/i', $action) || $action == 'deletefile') {
print '<table width="100%" class="liste noborderbottom">'."\n";
print '<table class="liste centpercent">'."\n";
print '<!-- Title for auto directories -->'."\n";
print '<tr class="liste_titre">'."\n";

View File

@ -1078,7 +1078,7 @@ if ($num == 0) {
$colspan++;
}
}
print '<tr><td colspan="'.$colspan.'" class="opacitymedium">'.$langs->trans("NoRecordFound").'</td></tr>';
print '<tr><td colspan="'.$colspan.'"><span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span></td></tr>';
}