diff options
author | vlakoff <vlakoff@gmail.com> | 2015-01-04 17:16:20 +0100 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2015-01-04 17:16:20 +0100 |
commit | 4be16041b2bd585d5715cb65e147241bbdff2106 (patch) | |
tree | b28fc52875270b823f81d8d2a2682f096ff5e861 /system/core/Hooks.php | |
parent | 1e5a9b18f0cbef5092b95378e34ad8e7eaf0c7e7 (diff) |
Change order of hooks loading
Let override hooks via environment-specific config.
Diffstat (limited to 'system/core/Hooks.php')
-rw-r--r-- | system/core/Hooks.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/core/Hooks.php b/system/core/Hooks.php index 57e4a99a6..4ec7698d7 100644 --- a/system/core/Hooks.php +++ b/system/core/Hooks.php @@ -99,14 +99,14 @@ class CI_Hooks { } // Grab the "hooks" definition file. - if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/hooks.php')) + if (file_exists(APPPATH.'config/hooks.php')) { - include(APPPATH.'config/'.ENVIRONMENT.'/hooks.php'); + include(APPPATH.'config/hooks.php'); } - if (file_exists(APPPATH.'config/hooks.php')) + if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/hooks.php')) { - include(APPPATH.'config/hooks.php'); + include(APPPATH.'config/'.ENVIRONMENT.'/hooks.php'); } // If there are no hooks, we're done. |