summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-01-30 23:52:47 -0800
committerwebchick <webchick@24967.no-reply.drupal.org>2012-01-30 23:52:47 -0800
commit1fab19f3f376de75f49dd5448d5e9a3cb662ac7c (patch)
tree36a0cd702fd6c22f85179f67b443d449804d6f8b
parent60c65b1cb3f02f9700b8ef916c962049bc61c91c (diff)
downloadbrdo-1fab19f3f376de75f49dd5448d5e9a3cb662ac7c.tar.gz
brdo-1fab19f3f376de75f49dd5448d5e9a3cb662ac7c.tar.bz2
Issue #1360416 by droplet, LSU_JBob: Fixed Document that the page_bottom() region is hidden from the blocks UI.
-rw-r--r--modules/system/system.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 010608db0..086a298e9 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -2719,8 +2719,8 @@ function system_region_list($theme_key, $show = REGIONS_ALL) {
* Implements hook_system_info_alter().
*/
function system_system_info_alter(&$info, $file, $type) {
- // Remove page-top from the blocks UI since it is reserved for modules to
- // populate from outside the blocks system.
+ // Remove page-top and page-bottom from the blocks UI since they are reserved for
+ // modules to populate from outside the blocks system.
if ($type == 'theme') {
$info['regions_hidden'][] = 'page_top';
$info['regions_hidden'][] = 'page_bottom';