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:
authorThomas Steur <thomas.steur@gmail.com>2014-01-23 03:15:11 +0400
committerThomas Steur <thomas.steur@gmail.com>2014-01-23 03:15:11 +0400
commit743b92dd23a5c930c2d30f998a2dd0e96e22401c (patch)
treea8bcc21404dfa18ed2387929d5383e70d493bcd8 /core/Tracker/Request.php
parent265f4b9e1949250b2758b11bc1db0ffd546fe6e2 (diff)
refs #4564 some more fixes for config super user
Diffstat (limited to 'core/Tracker/Request.php')
-rw-r--r--core/Tracker/Request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Tracker/Request.php b/core/Tracker/Request.php
index c8453dd865..5402d69395 100644
--- a/core/Tracker/Request.php
+++ b/core/Tracker/Request.php
@@ -101,7 +101,7 @@ class Request
if (empty($tokenAuth)) {
return false;
}
- $superUserLogin = Config::getInstance()->superuser['login'];
+ $superUserLogin = Piwik::getConfigSuperUserLogin();
$superUserPassword = Config::getInstance()->superuser['password'];
if (md5($superUserLogin . $superUserPassword) === $tokenAuth) {
return true;