From 1997f8ecc655999dc8fd6f4d6507b61dab8709f2 Mon Sep 17 00:00:00 2001 From: Isaiah DeRose-Wilson Date: Thu, 2 Dec 2010 13:11:54 -0500 Subject: [PATCH] Removed base.php and added I18n to the test_bootstrap.php. Refs #3249 --- application/test_bootstrap.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/application/test_bootstrap.php b/application/test_bootstrap.php index c60c17c..6731245 100644 --- a/application/test_bootstrap.php +++ b/application/test_bootstrap.php @@ -76,9 +76,6 @@ define('SYSPATH', realpath($system).DIRECTORY_SEPARATOR); // Clean up the configuration vars unset($application, $modules, $system); -// Load the base, low-level functions -require SYSPATH.'base'.EXT; - // Load the core Kohana class require SYSPATH.'classes/kohana/core'.EXT; @@ -146,6 +143,8 @@ Kohana::init(array( 'base_url' => '/', )); +I18n::lang('en-US'); + /** * Attach the file write to logging. Multiple writers are supported. */