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>2008-10-29 16:35:53 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-10-29 16:35:53 +0300
commitb0066c3052093edcc830fcad869b0703f1d09670 (patch)
treef9ef527c539a9676817e7615c80b67f8b866082b /piwik.php
parentf937c8ec72a37040b006538f79196f75411ef140 (diff)
- cleaning Tracker.php
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 7959b315ca..7185ae9b3d 100644
--- a/piwik.php
+++ b/piwik.php
@@ -26,8 +26,9 @@ require_once "Cookie.php";
require_once "Tracker/Db.php";
require_once "Tracker/Visit.php";
-$GLOBALS['DEBUGPIWIK'] = false;
+$GLOBALS['DEBUGPIWIK'] = true;
+ob_start();
if($GLOBALS['DEBUGPIWIK'] === true)
{
date_default_timezone_set(date_default_timezone_get());
@@ -41,7 +42,6 @@ if($GLOBALS['DEBUGPIWIK'] === true)
Piwik::createLogObject();
}
-ob_start();
$process = new Piwik_Tracker;
$process->main();
ob_end_flush();