Version 3.1.23

This commit is contained in:
Alchemy
2011-10-18 14:26:13 +02:00
parent 3d78a7407e
commit 6f1ee368aa
6 changed files with 23 additions and 18 deletions

View File

@@ -618,7 +618,8 @@ class task_archive extends phraseatask
function isIgnoredFile($f)
{
return($f=='.' || $f=='..' || $f=='Thumbs.db' || $f=='par-SYSTEM' || substr($f, 0, 10)=='.com.apple');
$f = strtolower($f);
return(($f[0]=='.' && $f != '.phrasea.xml' && $f != '.grouping.xml') || $f=='thumbs.db' || $f=='par-system');
// return(substr($f,0,1)=='.' || $f=='Thumbs.db' || $f=='par-SYSTEM');
}