From 9f3070b65a6971b54efbb476335f1e16315e4cdb Mon Sep 17 00:00:00 2001 From: Orangina Rouge Date: Mon, 24 Feb 2014 23:19:30 +0100 Subject: [PATCH] [Display of folder] - patch of issue when nothing to display Correction of the call of the function when no picture nor default image exist --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 775f24d..9fa6314 100644 --- a/index.php +++ b/index.php @@ -192,7 +192,7 @@ $dirs = array(); $dirs[] = array( "name" => $file, "date" => filemtime($currentdir . "/" . $file), - "html" => "
  • " . padstring($file) . "$label_loading
  • "); + "html" => "
  • " . padstring($file, $label_max_length) . "$label_loading
  • "); } } }