Skip to content
Snippets Groups Projects
Commit 93dd22ee authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Les fichiers .meta doivent rester invisibles à l'utilisateur

parent 8e71f45f
No related branches found
No related tags found
No related merge requests found
...@@ -205,7 +205,8 @@ if ($facid > 0) ...@@ -205,7 +205,8 @@ if ($facid > 0)
$var=true; $var=true;
while (($file = readdir($handle))!==false) while (($file = readdir($handle))!==false)
{ {
if (!is_dir($dir.$file) && substr($file, 0, 1) <> '.' && substr($file, 0, 3) <> 'CVS') if (! is_dir($dir.$file) && substr($file, 0, 1) <> '.' && substr($file, 0, 3) <> 'CVS'
&& ! eregi('\.meta$',$file))
{ {
$var=!$var; $var=!$var;
print '<tr '.$bc[$var].'>'; print '<tr '.$bc[$var].'>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment