[Piwik-svn] r174 - in trunk: . modules
svnmaster at piwik.org
svnmaster at piwik.org
Tue Jan 15 02:45:41 CET 2008
Author: matt
Date: 2008-01-15 02:45:41 +0100 (Tue, 15 Jan 2008)
New Revision: 174
Modified:
trunk/index.php
trunk/modules/FrontController.php
Log:
- added minimum version test FIX #13
Modified: trunk/index.php
===================================================================
--- trunk/index.php 2008-01-15 01:03:22 UTC (rev 173)
+++ trunk/index.php 2008-01-15 01:45:41 UTC (rev 174)
@@ -6,18 +6,23 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id$
*/
+
/**
* PHP Configuration init
- */
+ */
+
error_reporting(E_ALL|E_NOTICE);
@ini_set('display_errors', 1);
- at ini_set('magic_quotes_runtime', 0);
-date_default_timezone_set('Europe/London');
+ at ini_set('magic_quotes_runtime', 0);
if(!defined('PIWIK_INCLUDE_PATH'))
{
define('PIWIK_INCLUDE_PATH', '.');
}
+require_once PIWIK_INCLUDE_PATH . "/modules/testMinimumPhpVersion.php";
+
+
+date_default_timezone_set('Europe/London');
if(!defined('ENABLE_DISPATCH'))
{
define('ENABLE_DISPATCH', true);
Modified: trunk/modules/FrontController.php
===================================================================
--- trunk/modules/FrontController.php 2008-01-15 01:03:22 UTC (rev 173)
+++ trunk/modules/FrontController.php 2008-01-15 01:45:41 UTC (rev 174)
@@ -177,7 +177,6 @@
</body>
</html>
-
';
print($html);
More information about the Piwik-svn
mailing list