diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-03-06 23:30:45 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-03-06 23:30:45 +0100 |
commit | ebb53cb74e5659197d0b9701b946df826eb635a6 (patch) | |
tree | 79a7fa169c0d61e6893a42ddd41f092f1592075b /lib | |
parent | d66eecafc4ddd78e452b0799a161dd8bfd682183 (diff) | |
download | rpg-ebb53cb74e5659197d0b9701b946df826eb635a6.tar.gz rpg-ebb53cb74e5659197d0b9701b946df826eb635a6.tar.bz2 |
fixed index file
Diffstat (limited to 'lib')
-rw-r--r-- | lib/images/fileicons/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/images/fileicons/index.php b/lib/images/fileicons/index.php index 28de26062..09b6c9df8 100644 --- a/lib/images/fileicons/index.php +++ b/lib/images/fileicons/index.php @@ -30,7 +30,7 @@ <div class="white box"> <?php -foreach (glob('16x16/*.png') as $img) { +foreach (glob('*.png') as $img) { echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; } ?> @@ -38,7 +38,7 @@ foreach (glob('16x16/*.png') as $img) { <div class="black box"> <?php -foreach (glob('16x16/*.png') as $img) { +foreach (glob('*.png') as $img) { echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> '; } ?> |