summaryrefslogtreecommitdiffstats
path: root/system/codeigniter
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-21 00:22:55 +0200
committeradmin <devnull@localhost>2006-10-21 00:22:55 +0200
commitafe3aaa5292132e3f2c4604a413957fa18a603e5 (patch)
tree69ff270720fc99aa53492aae369a34e81ee11f4b /system/codeigniter
parent420ba03fcc3ab0ca1ed60c92a7502a78b994bfc9 (diff)
Diffstat (limited to 'system/codeigniter')
-rw-r--r--system/codeigniter/CodeIgniter.php8
1 files changed, 4 insertions, 4 deletions
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');
/*