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:
authorMatthieu Aubry <mattab@users.noreply.github.com>2017-09-20 14:06:08 +0300
committerGitHub <noreply@github.com>2017-09-20 14:06:08 +0300
commit4a18b35fb3f37189b999997bd90884aa0ceb6e75 (patch)
tree2020b521ec738402a0c522c081a10f4ef56ddbdb /core/Filesystem.php
parenta54f62f55e500644372fa342738483a6fd3dfaa3 (diff)
parente4750236c6668b9126271cc6eef02256a64ec9f0 (diff)
Merge pull request #12085 from piwik/3.x-dev3.1.1
Release Piwik 3.1.1
Diffstat (limited to 'core/Filesystem.php')
-rw-r--r--core/Filesystem.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/Filesystem.php b/core/Filesystem.php
index 513dcd68a8..7fbd63be39 100644
--- a/core/Filesystem.php
+++ b/core/Filesystem.php
@@ -31,6 +31,12 @@ class Filesystem
TrackerCache::deleteTrackerCache();
PiwikCache::flushAll();
self::clearPhpCaches();
+
+ $pluginManager = Plugin\Manager::getInstance();
+ $plugins = $pluginManager->getLoadedPlugins();
+ foreach ($plugins as $plugin) {
+ $plugin->reloadPluginInformation();
+ }
}
/**