From ebb53cb74e5659197d0b9701b946df826eb635a6 Mon Sep 17 00:00:00 2001 From: Andreas Gohr <andi@splitbrain.org> Date: Thu, 6 Mar 2014 23:30:45 +0100 Subject: [PATCH] fixed index file --- lib/images/fileicons/index.php | 4 ++-- 1 file 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.'" /> '; } ?> -- GitLab