Look: Modif esthétiques mineures

This commit is contained in:
Laurent Destailleur 2005-08-20 14:42:15 +00:00
parent eba5c99f04
commit 4ef5c07641

View File

@ -249,18 +249,23 @@ function show_theme($edit=0)
{ {
global $conf,$langs,$dirtheme,$bc; global $conf,$langs,$dirtheme,$bc;
$nbofthumbs=5; $thumbsbyrow=6;
print '<table class="noborder" width="100%">'; print '<table class="noborder" width="100%">';
print '<tr class="liste_titre"><td colspan="'.$nbofthumbs.'">'.$langs->trans("DefaultSkin").'</td></tr>'; print '<tr class="liste_titre"><td colspan="'.$thumbsbyrow.'">'.$langs->trans("DefaultSkin").'</td></tr>';
$var=true;
$var=!$var;
print '<tr '.$bc[$var].'><td colspan="2">';
print '<table class="notopnoleftnoright" width="100%">';
$handle=opendir($dirtheme); $handle=opendir($dirtheme);
$var=false;
$i=0; $i=0;
while (($subdir = readdir($handle))!==false) while (($subdir = readdir($handle))!==false)
{ {
if (is_dir($dirtheme."/".$subdir) && substr($subdir, 0, 1) <> '.' && substr($subdir, 0, 3) <> 'CVS') if (is_dir($dirtheme."/".$subdir) && substr($subdir, 0, 1) <> '.' && substr($subdir, 0, 3) <> 'CVS')
{ {
if ($i % $nbofthumbs == 0) { if ($i % $thumbsbyrow == 0)
{
print '<tr '.$bc[$var].'>'; print '<tr '.$bc[$var].'>';
} }
@ -280,17 +285,19 @@ function show_theme($edit=0)
$i++; $i++;
if ($i % $nbofthumbs == 0) print '</tr>'; if ($i % $thumbsbyrow == 0) print '</tr>';
} }
} }
if ($i % $nbofthumbs != 0) { if ($i % $thumbsbyrow != 0) {
while ($i % $nbofthumbs != 0) { while ($i % $thumbsbyrow != 0) {
print '<td>&nbsp;</td>'; print '<td>&nbsp;</td>';
$i++; $i++;
} }
print '</tr>'; print '</tr>';
} }
print '</table>';
print '</td></tr>';
print '</table>'; print '</table>';
} }