jpwfour
09.04.2008, 20:16
adminforce/content/module.php
statt:
if (is_dir ($dir.$file) && file_exists ($dir.$file.'/pref.ini') && $file != '.' && $file != '..') {
$modul = parse_ini_file ($dir.$file.'/pref.ini', TRUE);
$ico_endung = (file_exists ($dir.$file.'/icon.png')) ? 'png' : 'gif';
if ($i == 1 || ( $i % 4 ) == 0) echo ' <tr>'."\n";
echo ' <td width="25%" style="text-align: center;"><a href="javascript:ShowWindow(\'moduladmin.php?mod='.$file .'\');"><img src="'.$dir.$file.'/icon.'.$ico_endung.'" border="0" width="32" height="32" alt="" /><br />'.$modul['modul']['name'].'</a></td>'."\n";
if ( ( ( $i + 1 ) % 4 ) == 0 ) echo ' </tr>'."\n";
$i++;
}folgenden code:
if (is_dir ($dir.$file) && file_exists ($dir.$file.'/pref.ini') && $file != '.' && $file != '..') {
$modul = parse_ini_file ($dir.$file.'/pref.ini', TRUE);
$ico_endung = (file_exists ($dir.$file.'/icon.png')) ? 'png' : 'gif';
if ($i == 1 || ( ($i-1) % 4 ) == 0) echo ' <tr>'."\n";
echo ' <td width="25%" style="text-align: center;"><a href="javascript:ShowWindow(\'moduladmin.php?mod='.$file .'\');"><img src="'.$dir.$file.'/icon.'.$ico_endung.'" border="0" width="32" height="32" alt="" /><br />'.$modul['modul']['name'].'</a></td>'."\n";
if ( ( ( $i ) % 4 ) == 0 ) echo ' </tr>'."\n";
$i++;
}
statt:
if (is_dir ($dir.$file) && file_exists ($dir.$file.'/pref.ini') && $file != '.' && $file != '..') {
$modul = parse_ini_file ($dir.$file.'/pref.ini', TRUE);
$ico_endung = (file_exists ($dir.$file.'/icon.png')) ? 'png' : 'gif';
if ($i == 1 || ( $i % 4 ) == 0) echo ' <tr>'."\n";
echo ' <td width="25%" style="text-align: center;"><a href="javascript:ShowWindow(\'moduladmin.php?mod='.$file .'\');"><img src="'.$dir.$file.'/icon.'.$ico_endung.'" border="0" width="32" height="32" alt="" /><br />'.$modul['modul']['name'].'</a></td>'."\n";
if ( ( ( $i + 1 ) % 4 ) == 0 ) echo ' </tr>'."\n";
$i++;
}folgenden code:
if (is_dir ($dir.$file) && file_exists ($dir.$file.'/pref.ini') && $file != '.' && $file != '..') {
$modul = parse_ini_file ($dir.$file.'/pref.ini', TRUE);
$ico_endung = (file_exists ($dir.$file.'/icon.png')) ? 'png' : 'gif';
if ($i == 1 || ( ($i-1) % 4 ) == 0) echo ' <tr>'."\n";
echo ' <td width="25%" style="text-align: center;"><a href="javascript:ShowWindow(\'moduladmin.php?mod='.$file .'\');"><img src="'.$dir.$file.'/icon.'.$ico_endung.'" border="0" width="32" height="32" alt="" /><br />'.$modul['modul']['name'].'</a></td>'."\n";
if ( ( ( $i ) % 4 ) == 0 ) echo ' </tr>'."\n";
$i++;
}