diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-12-26 18:59:30 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-12-26 18:59:30 +0100 |
commit | 358ffec0a6b2a1fcc55e09623619126671d3e65f (patch) | |
tree | 6888d3f0a73500575db564cb4e5dbe5b828e4589 /system/libraries/User_agent.php | |
parent | d9f0a1496af1dfca7c317028708b2cd1e5727cea (diff) | |
parent | 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a (diff) |
Merge pull request #826 from EllisLab/feature/abstract-config-load
Abstracting the loading of files in the config directory depending on environments
Diffstat (limited to 'system/libraries/User_agent.php')
-rw-r--r-- | system/libraries/User_agent.php | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/system/libraries/User_agent.php b/system/libraries/User_agent.php index a007acec8..4a29d7d94 100644 --- a/system/libraries/User_agent.php +++ b/system/libraries/User_agent.php @@ -96,15 +96,10 @@ class CI_User_agent { */ private function _load_agent_file() { - if (defined('ENVIRONMENT') AND is_file(APPPATH.'config/'.ENVIRONMENT.'/user_agents.php')) - { - include(APPPATH.'config/'.ENVIRONMENT.'/user_agents.php'); - } - elseif (is_file(APPPATH.'config/user_agents.php')) - { - include(APPPATH.'config/user_agents.php'); - } - else + load_environ_config('user_agents'); + + // Return FALSE if we still have no mimes after trying to load them up. + if (count($this->mimes) === 0) { return FALSE; } |