diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-07-28 01:40:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-07-28 01:40:39 +0000 |
commit | 6b6ea89afa76e5b3e3161e1afcb0e5f6350099a9 (patch) | |
tree | b49eac068dd93d94e66b9f56ca8428b092643621 /modules/system | |
parent | 926a26b6d56da73381ff789dd61b43c9ab663ffd (diff) | |
download | brdo-6b6ea89afa76e5b3e3161e1afcb0e5f6350099a9.tar.gz brdo-6b6ea89afa76e5b3e3161e1afcb0e5f6350099a9.tar.bz2 |
- Patch #850686 by Jacine, sun: renamed 'highlight' region to 'highlighted' for consistency.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/page.tpl.php | 4 | ||||
-rw-r--r-- | modules/system/system.module | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/page.tpl.php b/modules/system/page.tpl.php index 2577f190a..ee3ac5786 100644 --- a/modules/system/page.tpl.php +++ b/modules/system/page.tpl.php @@ -55,7 +55,7 @@ * * Regions: * - $page['help']: Dynamic help text, mostly for admin pages. - * - $page['highlight']: Items for the highlighted content region. + * - $page['highlighted']: Items for the highlighted content region. * - $page['content']: The main content of the current page. * - $page['sidebar_first']: Items for the first sidebar. * - $page['sidebar_second']: Items for the second sidebar. @@ -117,7 +117,7 @@ <div id="main-wrapper"><div id="main" class="clearfix"> <div id="content" class="column"><div class="section"> - <?php if ($page['highlight']): ?><div id="highlight"><?php print render($page['highlight']); ?></div><?php endif; ?> + <?php if ($page['highlighted']): ?><div id="highlighted"><?php print render($page['highlighted']); ?></div><?php endif; ?> <a id="main-content"></a> <?php print render($title_prefix); ?> <?php if ($title): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?> diff --git a/modules/system/system.module b/modules/system/system.module index f16927aa4..05eb78661 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -2350,7 +2350,7 @@ function _system_rebuild_theme_data() { 'content' => 'Content', 'header' => 'Header', 'footer' => 'Footer', - 'highlight' => 'Highlighted content', + 'highlighted' => 'Highlighted', 'help' => 'Help', 'page_top' => 'Page top', 'page_bottom' => 'Page bottom', |