summaryrefslogtreecommitdiffstats
path: root/system/core/Router.php
diff options
context:
space:
mode:
authorEric Barnes <eric@ericlbarnes.com>2011-03-22 02:28:58 +0100
committerEric Barnes <eric@ericlbarnes.com>2011-03-22 02:28:58 +0100
commitfdd5b11b62f127901ddff2e5dc7923b063371070 (patch)
tree62b688d3635918089348a8cca9d4ce03d9ca3711 /system/core/Router.php
parent74089b2e80614f65112d812470b0959909e37682 (diff)
Fixed logic and removed the error supressing
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);