load config files from environment specific locations in core classes, helpers and libraries
diff --git a/system/core/Hooks.php b/system/core/Hooks.php
index 75fd811..e4f8cfa 100644
--- a/system/core/Hooks.php
+++ b/system/core/Hooks.php
@@ -65,7 +65,15 @@
// Grab the "hooks" definition file.
// If there are no hooks, we're done.
- @include(APPPATH.'config/hooks'.EXT);
+ if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/hooks'.EXT))
+ {
+ @include(APPPATH.'config/'.ENVIRONMENT.'/hooks'.EXT);
+ }
+ else
+ {
+ @include(APPPATH.'config/hooks'.EXT);
+ }
+
if ( ! isset($hook) OR ! is_array($hook))
{