diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-31 19:50:18 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-31 19:50:18 +0000 |
commit | ce52f41a29a0803aff54c37bc3d48aef4d6e7c50 (patch) | |
tree | c391baf4b313f5165de7fc94f92be7c905278adc /modules | |
parent | 35225694a871eec6de3379b71d3ec113b133827e (diff) | |
download | brdo-ce52f41a29a0803aff54c37bc3d48aef4d6e7c50.tar.gz brdo-ce52f41a29a0803aff54c37bc3d48aef4d6e7c50.tar.bz2 |
#364219 follow-up by TheRec: One last API nicety to theme_links() for the accessibility header stuff.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/page.tpl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/page.tpl.php b/modules/system/page.tpl.php index 5f0a96fdb..a6092204e 100644 --- a/modules/system/page.tpl.php +++ b/modules/system/page.tpl.php @@ -156,7 +156,7 @@ <?php if ($main_menu): ?> <div id="navigation"><div class="section"> - <?php print theme('links', $main_menu, array('id' => 'main-menu', 'class' => array('links', 'clearfix')), array('text' => t('Main menu'), 'level' => 'h2')); ?> + <?php print theme('links', $main_menu, array('id' => 'main-menu', 'class' => array('links', 'clearfix')), t('Main menu')); ?> </div></div> <!-- /.section, /#navigation --> <?php endif; ?> @@ -195,7 +195,7 @@ </div></div> <!-- /#main, /#main-wrapper --> <div id="footer"><div class="section"> - <?php print theme('links', $secondary_menu, array('id' => 'secondary-menu', 'class' => array('links', 'clearfix')), array('text' => t('Secondary menu'), 'level' => 'h2')); ?> + <?php print theme('links', $secondary_menu, array('id' => 'secondary-menu', 'class' => array('links', 'clearfix')), t('Secondary menu')); ?> <?php if ($footer): ?><div id="footer-region" class="region"><?php print $footer; ?></div><?php endif; ?> </div></div> <!-- /.section, /#footer --> |