diff --git a/albums.php b/albums.php index 80449b5..7e4d899 100644 --- a/albums.php +++ b/albums.php @@ -12,6 +12,9 @@ if (!isSecurePath($currentPath)) { exit; } +// Récupérer les informations de l'album courant +$currentAlbumInfo = getAlbumInfo($currentPath); + // Récupérer tous les sous-dossiers $albums = []; foreach (new DirectoryIterator($currentPath) as $item) { @@ -45,7 +48,7 @@ if (!isSecurePath($parentPath)) {
-