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>2009-08-04 20:01:05 +0400
committerrobocoder <anthon.pang@gmail.com>2009-08-04 20:01:05 +0400
commit1ec42866bb11b0507551499f26ccb4dfaa6bba36 (patch)
treeddff288be48ab1d268eed2dec8559562f86d6023 /core/Updater.php
parentc0ca29d16b2b8b7375bb3566aa45ede00a96a27d (diff)
refs #894 - updates for third party plugins
git-svn-id: http://dev.piwik.org/svn/trunk@1365 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 b7c7180f45..b88ff6c945 100644
--- a/core/Updater.php
+++ b/core/Updater.php
@@ -87,7 +87,7 @@ class Piwik_Updater
$className = 'Piwik_'. $name .'_Updates_' . str_replace('.', '_', $fileVersion);
}
- if(class_exists($className))
+ if(class_exists($className, false))
{
call_user_func( array($className, 'update') );
}