From afe3aaa5292132e3f2c4604a413957fa18a603e5 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 20 Oct 2006 22:22:55 +0000 Subject: --- system/codeigniter/CodeIgniter.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'system/codeigniter/CodeIgniter.php') diff --git a/system/codeigniter/CodeIgniter.php b/system/codeigniter/CodeIgniter.php index 93c1dba5f..409cf7765 100644 --- a/system/codeigniter/CodeIgniter.php +++ b/system/codeigniter/CodeIgniter.php @@ -52,11 +52,11 @@ set_magic_quotes_runtime(0); // Kill magic quotes $BM =& load_class('Benchmark'); $BM->mark('total_execution_time_start'); -$BM->mark('loading_time_base_clases_start'); +$BM->mark('loading_time_base_classes_start'); /* * ------------------------------------------------------ - * Instantiate the hooks classe + * Instantiate the hooks class * ------------------------------------------------------ */ @@ -109,7 +109,7 @@ $LANG =& load_class('Language'); * ------------------------------------------------------ * * Note: Due to the poor object handling in PHP 4 we'll - * contditionally load different versions of the base + * conditionally load different versions of the base * class. Retaining PHP 4 compatibility requires a bit of a hack. * * Note: The Loader class needs to be included first @@ -132,7 +132,7 @@ load_class('Controller', FALSE); require(APPPATH.'controllers/'.$RTR->fetch_directory().$RTR->fetch_class().EXT); // Set a mark point for benchmarking -$BM->mark('loading_time_base_clases_end'); +$BM->mark('loading_time_base_classes_end'); /* -- cgit v1.2.3-24-g4f1b