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
path: root/core
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@gmail.com>2015-03-09 06:14:27 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-03-09 06:14:27 +0300
commit2bade4f31929f000e5d842cfcfd88836b6b0a48f (patch)
tree3e55604892c7674613df6521a43b0ae1214c6530 /core
parent3c3a11b6948a9b4a32f0fa2bc9e40c6ecf2177b9 (diff)
method should be called static
Diffstat (limited to 'core')
-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 1c331fa7b9..2ed5dfc567 100644
--- a/core/API/Request.php
+++ b/core/API/Request.php
@@ -223,7 +223,7 @@ class Request
PluginManager::getInstance()->checkIsPluginActivated($module);
- $apiClassName = $this->getClassNameAPI($module);
+ $apiClassName = self::getClassNameAPI($module);
self::reloadAuthUsingTokenAuth($this->request);