From d1616b67addae562bf5b670cfc9ab630f41a2c39 Mon Sep 17 00:00:00 2001 From: Woody Gilk Date: Thu, 6 Aug 2009 10:04:58 -0500 Subject: [PATCH] Cleaning up comments --- index.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index e5abcbff2..9af89e223 100644 --- a/index.php +++ b/index.php @@ -85,16 +85,17 @@ // Load the base, low-level functions require SYSPATH.'base'.EXT; -// Load the main Kohana class +// Load the core Kohana class require SYSPATH.'classes/kohana/core'.EXT; if (is_file(APPPATH.'classes/kohana'.EXT)) { - // Load the Kohana class extension + // Application extends the core require APPPATH.'classes/kohana'.EXT; } else { + // Load empty core extension require SYSPATH.'classes/kohana'.EXT; }