summaryrefslogtreecommitdiffstats
path: root/system/core/Router.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/core/Router.php')
-rw-r--r--system/core/Router.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/system/core/Router.php b/system/core/Router.php
index bd363da71..2c78efe07 100644
--- a/system/core/Router.php
+++ b/system/core/Router.php
@@ -87,15 +87,15 @@ class CI_Router {
}
// Load the routes.php file.
-
- if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT))
+ if (is_file(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT))
{
include(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT);
}
- else
+ elseif (is_file(APPPATH.'config/routes'.EXT))
{
- @include(APPPATH.'config/routes'.EXT);
+ include(APPPATH.'config/routes'.EXT);
}
+
$this->routes = ( ! isset($route) OR ! is_array($route)) ? array() : $route;
unset($route);