summaryrefslogtreecommitdiff
path: root/themes/garland
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-08 07:36:53 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-08 07:36:53 +0000
commit85c680a1a0e4b0f48526a064eae94e4b77e0d303 (patch)
treeb14af72b13d663363ddd1606d4bd66fa8eba63f0 /themes/garland
parent2d632d1a187e687eed1e3a6e732aeb97f3ceebdb (diff)
downloadbrdo-85c680a1a0e4b0f48526a064eae94e4b77e0d303.tar.gz
brdo-85c680a1a0e4b0f48526a064eae94e4b77e0d303.tar.bz2
#588148 by JohnAlbin, sun, and effulgentsia: Make theme_links() actually themable.
Diffstat (limited to 'themes/garland')
-rw-r--r--themes/garland/template.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/garland/template.php b/themes/garland/template.php
index 677d13831..e29967c6e 100644
--- a/themes/garland/template.php
+++ b/themes/garland/template.php
@@ -58,7 +58,7 @@ function garland_process_html(&$vars) {
function garland_preprocess_page(&$vars) {
$vars['tabs2'] = menu_secondary_local_tasks();
if (isset($vars['main_menu'])) {
- $vars['primary_nav'] = theme('links', array(
+ $vars['primary_nav'] = theme('links__system_main_menu', array(
'links' => $vars['main_menu'],
'attributes' => array(
'class' => array('links', 'main-menu'),
@@ -74,7 +74,7 @@ function garland_preprocess_page(&$vars) {
$vars['primary_nav'] = FALSE;
}
if (isset($vars['secondary_menu'])) {
- $vars['secondary_nav'] = theme('links', array(
+ $vars['secondary_nav'] = theme('links__system_secondary_menu', array(
'links' => $vars['secondary_menu'],
'attributes' => array(
'class' => array('links', 'secondary-menu'),