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:
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php40
1 files changed, 20 insertions, 20 deletions
diff --git a/index.php b/index.php
index 7180b43582..7e630dd0c8 100755
--- a/index.php
+++ b/index.php
@@ -1,31 +1,31 @@
-<?php
-/**
- * Piwik - Open source web analytics
+<?php
+/**
+ * Piwik - Open source web analytics
*
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id$
*
- * @package Piwik
+ * @package Piwik
*/
error_reporting(E_ALL|E_NOTICE);
@ini_set('display_errors', 1);
-@ini_set('magic_quotes_runtime', 0);
-if(!defined('PIWIK_INCLUDE_PATH'))
+@ini_set('magic_quotes_runtime', 0);
+if(!defined('PIWIK_INCLUDE_PATH'))
{
- define('PIWIK_INCLUDE_PATH', '.');
-}
-
-require_once PIWIK_INCLUDE_PATH . "/modules/testMinimumPhpVersion.php";
-
-
+ define('PIWIK_INCLUDE_PATH', '.');
+}
+
+require_once PIWIK_INCLUDE_PATH . "/modules/testMinimumPhpVersion.php";
+
+
date_default_timezone_set(date_default_timezone_get());
-
-if(!defined('ENABLE_DISPATCH'))
-{
- define('ENABLE_DISPATCH', true);
-}
+
+if(!defined('ENABLE_DISPATCH'))
+{
+ define('ENABLE_DISPATCH', true);
+}
define('PIWIK_PLUGINS_PATH', PIWIK_INCLUDE_PATH . '/plugins');
define('PIWIK_DATAFILES_INCLUDE_PATH', PIWIK_INCLUDE_PATH . "/modules/DataFiles");
@@ -52,5 +52,5 @@ require_once "FrontController.php";
Piwik_FrontController::$enableDispatch = ENABLE_DISPATCH;
$controller = Piwik_FrontController::getInstance();
-$controller->init();
+$controller->init();
$controller->dispatch();