diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-25 15:39:13 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-25 15:39:13 +0000 |
commit | 245d83cb84124af7fd595e0a552a6ba782720d2e (patch) | |
tree | 3702d81ad9fe1ae8e8c05c87950115962899e986 /modules | |
parent | b30633deee82d39e30810a3ede04bb63f7a33688 (diff) | |
download | brdo-245d83cb84124af7fd595e0a552a6ba782720d2e.tar.gz brdo-245d83cb84124af7fd595e0a552a6ba782720d2e.tar.bz2 |
#364219 follow-up by TheRec: Fix invocations of theme_links() via Drupal's rendering API.
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 eb449a619..5f0a96fdb 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('text' => t('Main menu'), 'level' => 'h2'), array('id' => 'main-menu', 'class' => array('links clearfix'))); ?> + <?php print theme('links', $main_menu, array('id' => 'main-menu', 'class' => array('links', 'clearfix')), array('text' => t('Main menu'), 'level' => 'h2')); ?> </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('text' => t('Secondary menu'), 'level' => 'h2'), array('id' => 'secondary-menu', 'class' => array('links', 'clearfix'))); ?> + <?php print theme('links', $secondary_menu, array('id' => 'secondary-menu', 'class' => array('links', 'clearfix')), array('text' => t('Secondary menu'), 'level' => 'h2')); ?> <?php if ($footer): ?><div id="footer-region" class="region"><?php print $footer; ?></div><?php endif; ?> </div></div> <!-- /.section, /#footer --> |