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:
authorrobocoder <anthon.pang@gmail.com>2010-08-16 13:40:04 +0400
committerrobocoder <anthon.pang@gmail.com>2010-08-16 13:40:04 +0400
commit03b3558a3760904de3d78ae2901963ee6d6370c7 (patch)
tree5eeb0bca993ebe8e26996139c1e9ea22e5a0aa9e /plugins/Login
parentcd895c215125451ddffc64bbe2b3ace182f3209a (diff)
refs #1597 - fixes typo; it's too early in the morning for me to think about unit tests...
git-svn-id: http://dev.piwik.org/svn/trunk@2949 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/Login')
-rw-r--r--plugins/Login/Auth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Login/Auth.php b/plugins/Login/Auth.php
index 7567404b92..a20bb760d6 100644
--- a/plugins/Login/Auth.php
+++ b/plugins/Login/Auth.php
@@ -43,7 +43,7 @@ class Piwik_Login_Auth implements Piwik_Auth
WHERE token_auth = ?',
array($this->token_auth)
);
- if(!$login !== false)
+ if($login !== false)
{
return new Piwik_Auth_Result(Piwik_Auth_Result::SUCCESS, $login, $this->token_auth );
}