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:
authormattab <matthieu.aubry@gmail.com>2013-09-18 03:26:46 +0400
committermattab <matthieu.aubry@gmail.com>2013-09-18 03:26:46 +0400
commitdde9833f409263ab6651acf81eec28c02f7b4812 (patch)
tree94d793870bf0f21261e346759cb7784cb673efac /core/Updater.php
parent5aa9eef454d97f8450aa0966755b8494e4ec064b (diff)
Fixes #4143 In admin UI, display a message explaining that the plugins could not be loaded because they are not compatible with Piwik 2
Diffstat (limited to 'core/Updater.php')
-rw-r--r--core/Updater.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Updater.php b/core/Updater.php
index eca0d3fd4f..9fef7ff41f 100644
--- a/core/Updater.php
+++ b/core/Updater.php
@@ -165,6 +165,7 @@ class Updater
$className = $this->getUpdateClassName($componentName, $fileVersion);
if (class_exists($className, false)) {
+ // update()
call_user_func(array($className, 'update'));
}