diff --git a/albums.php b/albums.php index 2f8e287..1ee0979 100644 --- a/albums.php +++ b/albums.php @@ -22,6 +22,10 @@ foreach (new DirectoryIterator($currentPath) as $item) { if ($item->isDot()) continue; if ($item->isDir()) { $albumPath = $item->getPathname(); + + // Ajout de la vérification de sécurité + if (!isSecurePath($albumPath)) continue; + $info = getAlbumInfo($albumPath); $images = hasSubfolders($albumPath) ? @@ -77,7 +81,7 @@ $config = getSiteConfig();
- +