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:
-rw-r--r--index.php17
1 files changed, 3 insertions, 14 deletions
diff --git a/index.php b/index.php
index 504159c037..b99afaed76 100644
--- a/index.php
+++ b/index.php
@@ -55,18 +55,7 @@ if(!defined('PIWIK_ENABLE_ERROR_HANDLER') || PIWIK_ENABLE_ERROR_HANDLER)
if(!defined('PIWIK_ENABLE_DISPATCH') || PIWIK_ENABLE_DISPATCH)
{
- try {
- $controller = Piwik_FrontController::getInstance();
- $controller->init();
- $controller->dispatch();
- } catch (Exception $e) {
- if(!defined('PIWIK_ENABLE_ERROR_HANDLER') || PIWIK_ENABLE_ERROR_HANDLER)
- {
- throw $e;
- }
- else
- {
- error_log($e->getMessage(), 0);
- }
- }
+ $controller = Piwik_FrontController::getInstance();
+ $controller->init();
+ $controller->dispatch();
}