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:
authorMatthieu Aubry <matt@piwik.org>2014-10-21 06:01:40 +0400
committerMatthieu Aubry <matt@piwik.org>2014-10-21 06:01:40 +0400
commitc2533e194db52a052a28d67bb33b2d5ccd5756dc (patch)
tree7d66351e0b0dd8c8db4e436bc4628b6acb081cc4 /core
parent93bec18952139b7117202e07a502a541fca38727 (diff)
fixes #6475 use Tracker adapter rather at all times in tracker
Diffstat (limited to 'core')
-rw-r--r--core/Tracker/Model.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Tracker/Model.php b/core/Tracker/Model.php
index 72ff75b950..090cd8be59 100644
--- a/core/Tracker/Model.php
+++ b/core/Tracker/Model.php
@@ -377,7 +377,7 @@ class Model
private function getDb()
{
- return \Piwik\Db::get();
+ return Tracker::getDatabase();
}
}