diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-12 23:04:48 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-01-12 23:04:48 +0000 |
commit | 90b08f2bd880e036d16186925c9f11b3629a37a0 (patch) | |
tree | d37752019a27186af98f52eb37aa17fc95beed18 /modules/toolbar | |
parent | 39821e50b3b5791c9e5f67b49cf0d0542b98771d (diff) | |
download | brdo-90b08f2bd880e036d16186925c9f11b3629a37a0.tar.gz brdo-90b08f2bd880e036d16186925c9f11b3629a37a0.tar.bz2 |
#620616 by Bojhan, reglogge, lisarex, jhodgdon, and yoroy: Fix inconsistencies in menu description labeling.
Diffstat (limited to 'modules/toolbar')
-rw-r--r-- | modules/toolbar/toolbar.module | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/toolbar/toolbar.module b/modules/toolbar/toolbar.module index f4978b6f6..5bf10230b 100644 --- a/modules/toolbar/toolbar.module +++ b/modules/toolbar/toolbar.module @@ -204,6 +204,7 @@ function toolbar_view() { 'title' => t('Hello <strong>@username</strong>', array('@username' => format_username($user))), 'href' => 'user', 'html' => TRUE, + 'attributes' => array('title' => t('User account')), ), 'logout' => array( 'title' => t('Log out'), @@ -231,6 +232,7 @@ function toolbar_view() { 'title' => '<span class="home-link">Home</span>', 'href' => '<front>', 'html' => TRUE, + 'attributes' => array('title' => t('Home')), ), ); $build['toolbar_home'] = array( |