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:
Diffstat (limited to 'core/Piwik.php')
-rw-r--r--core/Piwik.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/core/Piwik.php b/core/Piwik.php
index a2ba4d5fcb..e79853fbe3 100644
--- a/core/Piwik.php
+++ b/core/Piwik.php
@@ -219,9 +219,12 @@ class Piwik
static public function printSqlProfilingReportTracker( $db = null )
{
- function maxSumMsFirst($a,$b)
+ if(!function_exists('maxSumMsFirst'))
{
- return $a['sum_time_ms'] < $b['sum_time_ms'];
+ function maxSumMsFirst($a,$b)
+ {
+ return $a['sum_time_ms'] < $b['sum_time_ms'];
+ }
}
if(is_null($db))
@@ -278,9 +281,12 @@ class Piwik
'sumTimeMs' => $existing['count'] + $query->getElapsedSecs() * 1000);
$infoIndexedByQuery[$query->getQuery()] = $new;
}
- function sortTimeDesc($a,$b)
+ if(!function_exists('sortTimeDesc'))
{
- return $a['sumTimeMs'] < $b['sumTimeMs'];
+ function sortTimeDesc($a,$b)
+ {
+ return $a['sumTimeMs'] < $b['sumTimeMs'];
+ }
}
uasort( $infoIndexedByQuery, 'sortTimeDesc');