diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-05 05:35:47 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-05 05:35:47 +0000 |
commit | 8e880b4c4124db457244b5a75975c4f6e4531378 (patch) | |
tree | 0c2689b1dc84bce8c9ef76bc963fc00ca9fcaf41 /core | |
parent | 3c65b68e1c958190ea6c4ca995019109a6a55865 (diff) |
Item Info block is now off into the info module. Yay!
Diffstat (limited to 'core')
-rw-r--r-- | core/config/config.php | 3 | ||||
-rw-r--r-- | core/libraries/Theme.php | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/core/config/config.php b/core/config/config.php index 2627a6f4..3f0f24d3 100644 --- a/core/config/config.php +++ b/core/config/config.php @@ -125,6 +125,7 @@ $config['modules'] = array MODPATH . 'carousel', MODPATH . 'tags', MODPATH . 'user', - + MODPATH . 'info', + THEMEPATH . 'default', ); diff --git a/core/libraries/Theme.php b/core/libraries/Theme.php index 59bf5896..bee2512f 100644 --- a/core/libraries/Theme.php +++ b/core/libraries/Theme.php @@ -43,6 +43,7 @@ class Theme_Core { $blocks = array( 'carousel' => carousel::block($this), 'tags' => tags::block($this), + 'info' => info::block($this), ); return $blocks; } |