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/toolbar | |
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/toolbar')
-rw-r--r-- | modules/toolbar/toolbar.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/toolbar/toolbar.module b/modules/toolbar/toolbar.module index ca0fc2dc7..f4978b6f6 100644 --- a/modules/toolbar/toolbar.module +++ b/modules/toolbar/toolbar.module @@ -191,7 +191,7 @@ function toolbar_view() { $links = toolbar_menu_navigation_links(toolbar_get_menu_tree()); $system_menus = menu_list_system_menus(); $build['toolbar_menu'] = array( - '#theme' => 'links', + '#theme' => 'links__toolbar_menu', '#links' => $links, '#attributes' => array('id' => 'toolbar-menu'), '#heading' => array('text' => t($system_menus['management']), 'level' => 'h2', 'class' => 'element-invisible'), @@ -220,7 +220,7 @@ function toolbar_view() { ); } $build['toolbar_user'] = array( - '#theme' => 'links', + '#theme' => 'links__toolbar_user', '#links' => $links, '#attributes' => array('id' => 'toolbar-user'), ); |