diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-27 18:38:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-27 18:38:35 +0000 |
commit | 7d41b2d7f5eed4fa274a948fa2c96d150f453f0e (patch) | |
tree | 404f8bc0a9165132387439a40b02fc4539f8f82e /modules/system/system.module | |
parent | 9381abb7c3374e450c048ce809c95f15eec98aa1 (diff) | |
download | brdo-7d41b2d7f5eed4fa274a948fa2c96d150f453f0e.tar.gz brdo-7d41b2d7f5eed4fa274a948fa2c96d150f453f0e.tar.bz2 |
- Patch #519782 by tic2000: change to become a hidden region like page_top.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 1137cc087..25ee5f1fb 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -1345,7 +1345,6 @@ function system_init() { } } - /** * Implement MODULE_preprocess_HOOK(). */ @@ -1836,6 +1835,7 @@ function _system_get_theme_data() { 'highlight' => 'Highlighted content', 'help' => 'Help', 'page_top' => 'Page top', + 'page_bottom' => 'Page bottom', ), 'description' => '', 'features' => array( @@ -2015,6 +2015,7 @@ function system_system_info_alter(&$info, $file) { // Remove page-top from the blocks UI since it is reserved for modules to // populate from outside the blocks system. $info['regions_hidden'][] = 'page_top'; + $info['regions_hidden'][] = 'page_bottom'; } /** |