diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-05 05:41:19 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-05 05:41:19 +0000 |
commit | fd3e21e2fda37b65b393e26d0e07f94847efb284 (patch) | |
tree | 6c5a404030fcef9fa0c37ecbb643675b6e49e33e /core | |
parent | 8e880b4c4124db457244b5a75975c4f6e4531378 (diff) |
Move Google Maps block off into its own gmaps module.
Diffstat (limited to 'core')
-rw-r--r-- | core/config/config.php | 1 | ||||
-rw-r--r-- | core/libraries/Theme.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/core/config/config.php b/core/config/config.php index 3f0f24d3..13652434 100644 --- a/core/config/config.php +++ b/core/config/config.php @@ -126,6 +126,7 @@ $config['modules'] = array MODPATH . 'tags', MODPATH . 'user', MODPATH . 'info', + MODPATH . 'gmaps', THEMEPATH . 'default', ); diff --git a/core/libraries/Theme.php b/core/libraries/Theme.php index bee2512f..101cbb42 100644 --- a/core/libraries/Theme.php +++ b/core/libraries/Theme.php @@ -44,6 +44,7 @@ class Theme_Core { 'carousel' => carousel::block($this), 'tags' => tags::block($this), 'info' => info::block($this), + 'gmaps' => gmaps::block($this), ); return $blocks; } |