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/Updater.php')
-rw-r--r--core/Updater.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Updater.php b/core/Updater.php
index 69756fa14a..6325cb53e8 100644
--- a/core/Updater.php
+++ b/core/Updater.php
@@ -194,8 +194,8 @@ class Piwik_Updater
$pathToUpdates = sprintf($this->pathUpdateFilePlugins, $name) . '*.php';
}
- $files = glob( $pathToUpdates );
- if($files === false)
+ $files = @glob( $pathToUpdates );
+ if($files == false)
{
$files = array();
}