diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-05-28 17:46:17 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-05-28 17:46:17 -0700 |
commit | 7fd6fcaf9b4d814455758963acf1236034494362 (patch) | |
tree | a2fbed6c756d8c0b08b65beff3d86d78d0a20c64 /application/config | |
parent | d8f2c9f9f71ce0850e8f33ba96950d3ff72fabde (diff) |
Force modules/gallery to be at the end of the module load path, so
that all other modules can override the core code.
Diffstat (limited to 'application/config')
-rw-r--r-- | application/config/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/config/config.php b/application/config/config.php index 92886dbe..d6da2ad1 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -119,7 +119,7 @@ $config['extension_prefix'] = 'MY_'; */ $config['modules'] = array( MODPATH . 'forge', - MODPATH . 'gallery', + MODPATH . 'gallery', // gallery must be *last* in the order ); if (TEST_MODE) { |