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:
authorrobocoder <anthon.pang@gmail.com>2010-11-15 11:00:09 +0300
committerrobocoder <anthon.pang@gmail.com>2010-11-15 11:00:09 +0300
commit1b3ea4a567c7e20e03186feb041e8d26bca02252 (patch)
tree2955dc357baf19903c718af8cdc02da16a501e03 /piwik.php
parent06a90ad858e21e341a02601c0e2f4181e0c79815 (diff)
fixes #1573 - revert [3240]; silently ignore invalid idsite
git-svn-id: http://dev.piwik.org/svn/trunk@3315 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'piwik.php')
-rw-r--r--piwik.php19
1 files changed, 4 insertions, 15 deletions
diff --git a/piwik.php b/piwik.php
index e2f80a5738..f4db93ca16 100644
--- a/piwik.php
+++ b/piwik.php
@@ -69,19 +69,8 @@ if($GLOBALS['PIWIK_TRACKER_DEBUG'] === true)
if(!defined('PIWIK_ENABLE_TRACKING') || PIWIK_ENABLE_TRACKING)
{
- try {
- $process = new Piwik_Tracker();
- $process->main();
- ob_end_flush();
- printDebug($_COOKIE);
- } catch (Exception $e) {
- if($GLOBALS['PIWIK_TRACKER_DEBUG'] === true)
- {
- throw $e;
- }
- else
- {
- error_log($e->getMessage(), 0);
- }
- }
+ $process = new Piwik_Tracker();
+ $process->main();
+ ob_end_flush();
+ printDebug($_COOKIE);
}