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:
authorvipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2010-06-03 21:46:05 +0400
committervipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2010-06-03 21:46:05 +0400
commit1bb3d0e36d4516265632a4c395cfbc19b6fc8111 (patch)
tree3c470c0278e4d688582da4b9ac019c53346fd198 /plugins/Login
parent9d53d56ed5ba98841597b90afe014661a1b42c87 (diff)
refs #1368 - Piwik::prefixTable() is deprecated
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 81a00aea27..c36254d64a 100644
--- a/plugins/Login/Auth.php
+++ b/plugins/Login/Auth.php
@@ -42,7 +42,7 @@ class Piwik_Login_Auth implements Piwik_Auth
}
$login = Piwik_FetchOne(
- 'SELECT login FROM '.Piwik::prefixTable('user').' WHERE token_auth = ?',
+ 'SELECT login FROM '.Piwik_Common::prefixTable('user').' WHERE token_auth = ?',
array($this->token_auth)
);
if($login !== false)