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:
-rw-r--r--core/Plugin/Manager.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Plugin/Manager.php b/core/Plugin/Manager.php
index 22c7d0b4d3..c1ff01cec2 100644
--- a/core/Plugin/Manager.php
+++ b/core/Plugin/Manager.php
@@ -896,7 +896,9 @@ class Manager extends Singleton
$plugins = PiwikConfig::getInstance()->Plugins['Plugins'];
foreach ($plugins as $pluginName) {
// if a plugin is listed in the config, but is not loaded, it does not exist in the folder
- if (!self::getInstance()->isPluginLoaded($pluginName)) {
+ if (!self::getInstance()->isPluginLoaded($pluginName)
+ && !$this->isPluginBogus($pluginName)
+ ) {
$missingPlugins[] = $pluginName;
}
}