commit | 05fa61144667c85b0463f7e8baa6af00aa195dc6 | [log] [tgz] |
---|---|---|
author | Phil Sturgeon <email@philsturgeon.co.uk> | Wed Apr 06 22:57:43 2011 +0100 |
committer | Phil Sturgeon <email@philsturgeon.co.uk> | Wed Apr 06 22:57:43 2011 +0100 |
tree | 2a611231c945ce7fd5bd021e3491dd973794f58e | |
parent | 08b5169a5181706156c9a53229d164d9fa3aea32 [diff] [blame] |
Made Environment Support optional. Comment out or delete the constant to stop environment checks.
diff --git a/system/core/Router.php b/system/core/Router.php index 2c78efe..d451aab 100644 --- a/system/core/Router.php +++ b/system/core/Router.php
@@ -87,7 +87,7 @@ } // Load the routes.php file. - if (is_file(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT)) + if (defined('ENVIRONMENT') AND is_file(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT)) { include(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT); }