mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Fix: Les fichiers .meta doivent rester invisibles l'utilisateur
This commit is contained in:
parent
8e71f45f44
commit
93dd22eed8
|
|
@ -205,7 +205,8 @@ if ($facid > 0)
|
|||
$var=true;
|
||||
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;
|
||||
print '<tr '.$bc[$var].'>';
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user