diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-31 19:36:17 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-31 19:36:17 +0000 |
commit | 35225694a871eec6de3379b71d3ec113b133827e (patch) | |
tree | 14dbe65e468a0b2b84ae89faba47be7a8622a8bb | |
parent | 896954da58edb61bada511af47940b374dc368c2 (diff) | |
download | brdo-35225694a871eec6de3379b71d3ec113b133827e.tar.gz brdo-35225694a871eec6de3379b71d3ec113b133827e.tar.bz2 |
#510094 by pp: Added description to the link items of the toolbar.
-rw-r--r-- | modules/toolbar/toolbar.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/toolbar/toolbar.module b/modules/toolbar/toolbar.module index b17107c4c..d1a410485 100644 --- a/modules/toolbar/toolbar.module +++ b/modules/toolbar/toolbar.module @@ -146,7 +146,7 @@ function toolbar_menu_navigation_links($tree) { // Add icon placeholder. $link['title'] = '<span class="icon"></span>' . $item['link']['title']; // Add admin link ID and to-overlay class for the overlay. - $link['attributes'] = array('id' => 'toolbar-link-' . $id, 'class' => array('to-overlay')); + $link['attributes'] = array('id' => 'toolbar-link-' . $id, 'class' => array('to-overlay'), 'title' => $item['link']['description']); $link['html'] = TRUE; $class = ' path-' . $id; |