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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-21 04:03:51 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-21 18:49:19 +0400
commit7ba580e1ba2a32f95e7ad04b54ac1ff4bf260186 (patch)
tree52c31a247cb8d3ca159a6247c00ba5c69cd3fb09 /core/Profiler.php
parentc91731b6dc7f7f155c7b9400c82c1b3c5e84822b (diff)
Replace self w/ explict class name in closure in Profiler.php.
Diffstat (limited to 'core/Profiler.php')
-rw-r--r--core/Profiler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Profiler.php b/core/Profiler.php
index a5350428b0..d0f988b4bf 100644
--- a/core/Profiler.php
+++ b/core/Profiler.php
@@ -259,7 +259,7 @@ class Profiler
array_unshift($runs, $runId);
if ($mainRun) {
- self::aggregateXhprofRuns($runs, $profilerNamespace, $saveTo = $runId);
+ Profiler::aggregateXhprofRuns($runs, $profilerNamespace, $saveTo = $runId);
$out = "\n\n";
$baseUrl = "http://" . @$_SERVER['HTTP_HOST'] . "/" . @$_SERVER['REQUEST_URI'];