Fixing merge with upstream

This commit is contained in:
Matt Button 2010-10-30 12:55:25 +01:00
commit 9d58a67b6a
3 changed files with 22 additions and 1 deletions

View file

@ -36,6 +36,11 @@ ini_set('unserialize_callback_func', 'spl_autoload_call');
//-- Configuration and initialization -----------------------------------------
/**
* Set the default language
*/
I18n::lang('en-us');
/**
* Set Kohana::$environment if $_ENV['KOHANA_ENV'] has been supplied.
*

View file

@ -2,7 +2,7 @@
RewriteEngine On
# Installation directory
RewriteBase /kohana/
RewriteBase /
# Protect hidden files from being viewed
<Files .*>

View file

@ -82,6 +82,22 @@ if (file_exists('install'.EXT))
return include 'install'.EXT;
}
if ( ! defined('KOHANA_START_TIME'))
{
/**
* Define the start time of the application, used for profiling.
*/
define('KOHANA_START_TIME', microtime(TRUE));
}
if ( ! defined('KOHANA_START_MEMORY'))
{
/**
* Define the memory usage at the start of the application, used for profiling.
*/
define('KOHANA_START_MEMORY', memory_get_usage());
}
// Load the core Kohana class
require SYSPATH.'classes/kohana/core'.EXT;