Changeset 2003 for trunk/system/core/Kohana.php
- Timestamp:
- 02/08/2008 07:19:05 PM (11 months ago)
- Files:
-
- 1 modified
-
trunk/system/core/Kohana.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/core/Kohana.php
r1899 r2003 51 51 // Start the environment setup benchmark 52 52 Benchmark::start(SYSTEM_BENCHMARK.'_environment_setup'); 53 54 // Define Kohana error constant 55 defined('E_KOHANA') or define('E_KOHANA', 42); 56 57 // Define 404 error constant 58 defined('E_PAGE_NOT_FOUND') or define('E_PAGE_NOT_FOUND', 43); 59 60 // Define database error constant 61 defined('E_DATABASE_ERROR') or define('E_DATABASE_ERROR', 44); 53 62 54 63 // Disable error reporting … … 1105 1114 1106 1115 } // End Kohana 404 Exception 1107 1108 /**1109 * Run Kohana setup to prepare the environment.1110 */1111 Kohana::setup();
