summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-08-11 12:20:26 +0000
committerDries Buytaert <dries@buytaert.net>2009-08-11 12:20:26 +0000
commit62e0ddc74006b99f0d854a33b80f47d7cf317792 (patch)
treeec1f0f0b0d022ec3909e3da295f052d915f58c89 /includes
parentd062ec4e6afe3a2dc744ffbd3eb4030d10727f61 (diff)
downloadbrdo-62e0ddc74006b99f0d854a33b80f47d7cf317792.tar.gz
brdo-62e0ddc74006b99f0d854a33b80f47d7cf317792.tar.bz2
- Patch #545356 by Damien Tournoud: sidebars were broken in install.php, update.php, and the expert profile due to a previous patch that made the sidebar regions more semantic for RTL support.
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc
index f04ce4a94..4e4a0e356 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -3826,7 +3826,7 @@ function drupal_set_page_content($content = NULL) {
* A string or array representing the content of a page. The array consists of
* the following keys:
* - #type: Value is always 'page'. This pushes the theming through page.tpl.php (required).
- * - #show_blocks: A marker which suppresses left/right regions if FALSE (optional).
+ * - #show_blocks: A marker which suppresses sidebar regions if FALSE (optional).
* - #show_messages: Suppress drupal_get_message() items. Used by Batch API (optional).
*
* @see hook_page_alter()
@@ -3841,7 +3841,7 @@ function drupal_render_page($page) {
$page = element_info('page');
}
// Modules alter the $page as needed. Blocks are populated into regions like
- // 'left', 'footer', etc.
+ // 'sidebar_first', 'footer', etc.
drupal_alter('page', $page);
return drupal_render($page);