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>2008-04-02 01:05:31 +0400
committermattpiwik <matthieu.aubry@gmail.com>2008-04-02 01:05:31 +0400
commitc2b82b0319f0bd60537d2ccb78369c1da999a09c (patch)
tree799d7340660b3c83d18f8c30523490681276aaa8 /index.php
parentfcc7bf28b3fd49983e57ef00c3d9221166a29881 (diff)
- php4 friendly error
git-svn-id: http://dev.piwik.org/svn/trunk@431 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'index.php')
-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();