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:
Diffstat (limited to 'core/API/Request.php')
-rw-r--r--core/API/Request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/API/Request.php b/core/API/Request.php
index 49ffc2a5df..4af8db7500 100644
--- a/core/API/Request.php
+++ b/core/API/Request.php
@@ -137,7 +137,7 @@ class Piwik_API_Request
list($module, $method) = $this->extractModuleAndMethod($moduleMethod);
- if (!Piwik_PluginsManager::getInstance()->isPluginActivated($module)) {
+ if (!PluginsManager::getInstance()->isPluginActivated($module)) {
throw new Piwik_FrontController_PluginDeactivatedException($module);
}
$moduleClass = "Piwik_" . $module . "_API";