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-04-02 01:05:31 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-04-02 01:05:31 +0400
commit0a88793e8558e8f4fd2f404d28f7b6bb30dcfe07 (patch)
tree799d7340660b3c83d18f8c30523490681276aaa8
parent9303731d1766ff5e78b5efe4356082aa33a8824c (diff)
- php4 friendly error
-rwxr-xr-xindex.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/index.php b/index.php
index 9269eff37e..f40aa73dfa 100755
--- a/index.php
+++ b/index.php
@@ -9,6 +9,7 @@
* @package Piwik
*/
+// NOTE: This file should be PHP4 compatible
error_reporting(E_ALL|E_NOTICE);
@ini_set('display_errors', 1);
@ini_set('magic_quotes_runtime', 0);
@@ -49,8 +50,6 @@ session_start();
require_once "FrontController.php";
-Piwik_FrontController::$enableDispatch = ENABLE_DISPATCH;
-
if(ENABLE_DISPATCH)
{
$controller = Piwik_FrontController::getInstance();