Remove KOHANA_START_* from index.php, they are now defined in base.php

This commit is contained in:
Woody Gilk 2009-11-04 10:12:14 -06:00
parent dbda2ea7fc
commit 019f1cdf08

View file

@ -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;