[Display of folder] - patch of issue when nothing to display

Correction of the call of the function when no picture nor default image exist
This commit is contained in:
Orangina Rouge 2014-02-24 23:19:30 +01:00
parent dab48007cf
commit 9f3070b65a
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ $dirs = array();
$dirs[] = array(
"name" => $file,
"date" => filemtime($currentdir . "/" . $file),
"html" => "<li><a href='?dir=" . ltrim($requestedDir . "/" . $file, "/") . "'><em>" . padstring($file) . "</em><span></span><img src='" . GALLERY_ROOT . "images/folder_" . strtolower($folder_color) . ".png' width='$thumb_size' height='$thumb_size' alt='$label_loading' /></a></li>");
"html" => "<li><a href='?dir=" . ltrim($requestedDir . "/" . $file, "/") . "'><em>" . padstring($file, $label_max_length) . "</em><span></span><img src='" . GALLERY_ROOT . "images/folder_" . strtolower($folder_color) . ".png' width='$thumb_size' height='$thumb_size' alt='$label_loading' /></a></li>");
}
}
}