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:
authorrobocoder <anthon.pang@gmail.com>2010-07-30 11:00:24 +0400
committerrobocoder <anthon.pang@gmail.com>2010-07-30 11:00:24 +0400
commit6dfb67630cafd55ad2faa8a1611be49a3f9a8177 (patch)
tree0ef69f6e2cdf6a256c7ab5125d5c701479f5ffe4 /core/Updater.php
parentd3a2455ff16db40dca1fb5cbef86dbcc37d81434 (diff)
refs #1529 - added/tested replacement glob() function; a missing glob() is still a warning
git-svn-id: http://dev.piwik.org/svn/trunk@2817 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/Updater.php')
-rw-r--r--core/Updater.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Updater.php b/core/Updater.php
index 6325cb53e8..8dfba6a35d 100644
--- a/core/Updater.php
+++ b/core/Updater.php
@@ -194,7 +194,7 @@ class Piwik_Updater
$pathToUpdates = sprintf($this->pathUpdateFilePlugins, $name) . '*.php';
}
- $files = @glob( $pathToUpdates );
+ $files = _glob( $pathToUpdates );
if($files == false)
{
$files = array();