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:
authormattpiwik <matthieu.aubry@gmail.com>2010-12-21 00:52:57 +0300
committermattpiwik <matthieu.aubry@gmail.com>2010-12-21 00:52:57 +0300
commita99c196ed76b084a6b015f09c7343eb6c8464221 (patch)
tree2708f6778719810162a69502df3e77fc3bbd2bf3 /piwik.php
parent2396bb4e0fd45fd39db8c3baad07f07a7081c8fa (diff)
* Updating TCPDF to latest version
* Fixes #1537 Adding specific fonts for specific languages. PDF Reports now generate in all languages (inc. arabic, chinese, japanese, russian, korean, ukrainian, etc.) except ahmaric and thai. * git-svn-id: http://dev.piwik.org/svn/trunk@3477 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'piwik.php')
-rw-r--r--piwik.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/piwik.php b/piwik.php
index f36b843339..a74a6cba67 100644
--- a/piwik.php
+++ b/piwik.php
@@ -55,6 +55,7 @@ if($GLOBALS['PIWIK_TRACKER_DEBUG'] === true)
require_once PIWIK_INCLUDE_PATH .'/core/Loader.php';
require_once PIWIK_INCLUDE_PATH .'/core/ErrorHandler.php';
require_once PIWIK_INCLUDE_PATH .'/core/ExceptionHandler.php';
+ $timer = new Piwik_Timer();
set_error_handler('Piwik_ErrorHandler');
set_exception_handler('Piwik_ExceptionHandler');
printDebug($_GET);
@@ -74,4 +75,5 @@ if(!defined('PIWIK_ENABLE_TRACKING') || PIWIK_ENABLE_TRACKING)
$process->main();
ob_end_flush();
printDebug($_COOKIE);
+ printDebug($timer);
}