diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-08 07:36:53 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-08 07:36:53 +0000 |
commit | 85c680a1a0e4b0f48526a064eae94e4b77e0d303 (patch) | |
tree | b14af72b13d663363ddd1606d4bd66fa8eba63f0 /modules/system | |
parent | 2d632d1a187e687eed1e3a6e732aeb97f3ceebdb (diff) | |
download | brdo-85c680a1a0e4b0f48526a064eae94e4b77e0d303.tar.gz brdo-85c680a1a0e4b0f48526a064eae94e4b77e0d303.tar.bz2 |
#588148 by JohnAlbin, sun, and effulgentsia: Make theme_links() actually themable.
Diffstat (limited to 'modules/system')
-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 7324c7430..aa9f5ecd3 100644 --- a/modules/system/page.tpl.php +++ b/modules/system/page.tpl.php @@ -104,7 +104,7 @@ <?php if ($main_menu): ?> <div id="navigation"><div class="section"> - <?php print theme('links', array('links' => $main_menu, 'attributes' => array('id' => 'main-menu', 'class' => array('links', 'clearfix')), 'heading' => t('Main menu'))); ?> + <?php print theme('links__system_main_menu', array('links' => $main_menu, 'attributes' => array('id' => 'main-menu', 'class' => array('links', 'clearfix')), 'heading' => t('Main menu'))); ?> </div></div> <!-- /.section, /#navigation --> <?php endif; ?> @@ -144,7 +144,7 @@ </div></div> <!-- /#main, /#main-wrapper --> <div id="footer"><div class="section"> - <?php print theme('links', array('links' => $secondary_menu, 'attributes' => array('id' => 'secondary-menu', 'class' => array('links', 'clearfix')), 'heading' => t('Secondary menu'))); ?> + <?php print theme('links__system_secondary_menu', array('links' => $secondary_menu, 'attributes' => array('id' => 'secondary-menu', 'class' => array('links', 'clearfix')), 'heading' => t('Secondary menu'))); ?> <?php print render($page['footer']); ?> </div></div> <!-- /.section, /#footer --> |