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-03-27 08:53:48 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-03-27 08:53:48 +0300
commitbc89b5ec03cf3833a41560110b0e433f93232c22 (patch)
tree2f43f6a73739276380399ec8ed2b0eb40fdf2fb6 /piwik.php
parentcd91ede1a0455b07039df0295a52f94924fdf204 (diff)
- memory and speed optimizations of archiving, refs #374 (hopefully fixing it but not sure yet)
- added support for profiling memory & time in Piwik via the events mechanism - small other changes
Diffstat (limited to 'piwik.php')
-rw-r--r--piwik.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/piwik.php b/piwik.php
index d882b8ab28..92c571d958 100644
--- a/piwik.php
+++ b/piwik.php
@@ -7,7 +7,7 @@
* @version $Id$
*/
-$GLOBALS['DEBUGPIWIK'] = false;
+$GLOBALS['PIWIK_TRACKER_DEBUG'] = false;
if(defined('PIWIK_ENABLE_TRACKING') && !PIWIK_ENABLE_TRACKING)
{
return;
@@ -36,7 +36,7 @@ require_once "Tracker/GoalManager.php";
ob_start();
-if($GLOBALS['DEBUGPIWIK'] === true)
+if($GLOBALS['PIWIK_TRACKER_DEBUG'] === true)
{
date_default_timezone_set(date_default_timezone_get());
require_once "core/ErrorHandler.php";