Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/FileIntegrity.php')
-rw-r--r--core/FileIntegrity.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/FileIntegrity.php b/core/FileIntegrity.php
index 8e91730d61..c7b1222244 100644
--- a/core/FileIntegrity.php
+++ b/core/FileIntegrity.php
@@ -70,10 +70,12 @@ class FileIntegrity
'config/manifest.inc.php',
'misc/*.dat',
'misc/*.dat.gz',
+ 'misc/*.bin',
'misc/user/*png',
'misc/package',
'misc/package/WebAppGallery/*.xml',
'misc/package/WebAppGallery/install.sql',
+ 'plugins/ImageGraph/fonts/unifont.ttf',
'vendor/autoload.php',
'vendor/composer/autoload_real.php',
'tmp/*',
@@ -308,7 +310,7 @@ class FileIntegrity
{
$expected = self::getFilesNotInManifestButExpectedAnyway();
foreach ($expected as $expectedPattern) {
- if (fnmatch($expectedPattern, $file)) {
+ if (fnmatch($expectedPattern, $file, defined('FNM_CASEFOLD') ? FNM_CASEFOLD : 0)) {
return true;
}
}