From 019f1cdf089706191239bba3532d1da26c21e9ef Mon Sep 17 00:00:00 2001 From: Woody Gilk Date: Wed, 4 Nov 2009 10:12:14 -0600 Subject: [PATCH] Remove KOHANA_START_* from index.php, they are now defined in base.php --- index.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/index.php b/index.php index bb4343a..dbc9782 100644 --- a/index.php +++ b/index.php @@ -79,12 +79,6 @@ if (file_exists('install'.EXT)) return include 'install'.EXT; } -// Define the start time of the application -define('KOHANA_START_TIME', microtime(TRUE)); - -// Define the memory usage at the start of the application -define('KOHANA_START_MEMORY', memory_get_usage()); - // Load the base, low-level functions require SYSPATH.'base'.EXT;