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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-01-12 06:48:22 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-01-12 06:48:22 +0300
commit878c4593cccab9d46e1a33650889d02cf78fb057 (patch)
treea49a7a41fb5bb44242896850deac27369af67e57 /core/Tracker/Db.php
parent1869cbb3eb1fefb904a8fecc6239a70d9c88bc73 (diff)
- fixing failed when profiling enabled [prefixTable()]
Diffstat (limited to 'core/Tracker/Db.php')
-rw-r--r--core/Tracker/Db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Tracker/Db.php b/core/Tracker/Db.php
index b9a5be2978..88d415d4d0 100644
--- a/core/Tracker/Db.php
+++ b/core/Tracker/Db.php
@@ -238,7 +238,7 @@ class Piwik_Tracker_Db
$time = $info['sum_time_ms'];
$count = $info['count'];
- $queryProfiling = "INSERT INTO ".$this->prefixTable('log_profiling')."
+ $queryProfiling = "INSERT INTO ".Piwik_Common::prefixTable('log_profiling')."
(query,count,sum_time_ms) VALUES (?,$count,$time)
ON DUPLICATE KEY
UPDATE count=count+$count,sum_time_ms=sum_time_ms+$time";