diff options
Diffstat (limited to 'lib/images/fileicons/index.php')
-rw-r--r-- | lib/images/fileicons/index.php | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/lib/images/fileicons/index.php b/lib/images/fileicons/index.php index f90e7e6f0..28de26062 100644 --- a/lib/images/fileicons/index.php +++ b/lib/images/fileicons/index.php @@ -30,7 +30,7 @@ <div class="white box"> <?php -foreach (glob('*.png') as $img) { +foreach (glob('16x16/*.png') as $img) { echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; } ?> @@ -38,11 +38,30 @@ foreach (glob('*.png') as $img) { <div class="black box"> <?php -foreach (glob('*.png') as $img) { +foreach (glob('16x16/*.png') as $img) { echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; } ?> </div> +<br style="clear: left" /> + +<div class="white box"> + <?php + foreach (glob('32x32/*.png') as $img) { + echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; + } + ?> +</div> + +<div class="black box"> + <?php + foreach (glob('32x32/*.png') as $img) { + echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; + } + ?> +</div> + + </body> </html> |