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 'plugins/Login')
-rw-r--r--plugins/Login/Auth.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/Login/Auth.php b/plugins/Login/Auth.php
index af5bd063ee..e83188a83f 100644
--- a/plugins/Login/Auth.php
+++ b/plugins/Login/Auth.php
@@ -83,6 +83,11 @@ class Piwik_Login_Auth implements Piwik_Auth
return new Piwik_Auth_Result(Piwik_Auth_Result::SUCCESS, $login, $userToken );
}
}
+
+ if ($this->token_auth !== null)
+ {
+ echo "\nROOT LOGIN: '$rootLogin'\nROOT TOKEN: '$rootToken'\nAUTH SUPPLIED: '{$this->token_auth}\n'";
+ }
return new Piwik_Auth_Result( Piwik_Auth_Result::FAILURE, $this->login, $this->token_auth );
}