diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-16 05:13:04 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-16 05:13:04 +0000 |
commit | 8bd7afeb5b98cda47fce9df8a32ce85d9ef1a173 (patch) | |
tree | d7b337dc111d5f8eae129a24ab0f6c48eabf3d34 | |
parent | 83363172b1d42b0d5c27d555a497f49fcad34b11 (diff) |
TEST_MODE always exists now, so check its value, don't rely on its existence to know that we're in test mode.
-rw-r--r-- | core/config/config.php | 2 | ||||
-rw-r--r-- | modules/gallery_unit_test/controllers/gallery_unit_test.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/config/config.php b/core/config/config.php index c785deb1..00046e80 100644 --- a/core/config/config.php +++ b/core/config/config.php @@ -122,7 +122,7 @@ $config['modules'] = array( THEMEPATH . 'admin_default' ); -if (defined('TEST_MODE')) { +if (TEST_MODE) { array_splice($config['modules'], 0, 0, array(MODPATH . 'gallery_unit_test', MODPATH . 'unit_test')); diff --git a/modules/gallery_unit_test/controllers/gallery_unit_test.php b/modules/gallery_unit_test/controllers/gallery_unit_test.php index e54963f2..8e5c90c3 100644 --- a/modules/gallery_unit_test/controllers/gallery_unit_test.php +++ b/modules/gallery_unit_test/controllers/gallery_unit_test.php @@ -19,7 +19,7 @@ */ class Gallery_Unit_Test_Controller extends Controller { function Index() { - if (!defined('TEST_MODE')) { + if (!TEST_MODE) { print Kohana::show_404(); } |