modular refactoring on the configuration and module classes.

This commit is contained in:
Taylor Otwell
2011-08-18 23:48:51 -05:00
parent d9f2ba84c9
commit a440f0e185
3 changed files with 30 additions and 8 deletions

View File

@@ -44,7 +44,7 @@ define('DEFAULT_MODULE', 'application');
// --------------------------------------------------------------
// Register the active modules.
// --------------------------------------------------------------
Module::$modules = array_merge(array('application' => 'application'), $active);
Module::$modules = array_merge(array('application'), $active);
unset($active);