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>2011-12-02 17:39:50 +0400
committerrobocoder <anthon.pang@gmail.com>2011-12-02 17:39:50 +0400
commitc9b75f828572fab4f09e797f696da635247de346 (patch)
treea318488e33ffc494aca3ac11b05b41a23a746265 /core/Tracker/Db.php
parent67d41cd8c178fc29f6328bea8f14d42e928dec15 (diff)
refs #2608 - Non-static method Piwik_Tracker_Db::isProfilingEnabled() should not be called statically
git-svn-id: http://dev.piwik.org/svn/trunk@5513 59fd770c-687e-43c8-a1e3-f5a4ff64c105
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 8a36d472d6..0906371cd7 100644
--- a/core/Tracker/Db.php
+++ b/core/Tracker/Db.php
@@ -50,7 +50,7 @@ abstract class Piwik_Tracker_Db
*
* @return bool
*/
- public function isProfilingEnabled()
+ public static function isProfilingEnabled()
{
return self::$profiling;
}