diff options
author | Ash Ward <ash@netality.com> | 2011-12-01 17:03:04 +0000 |
---|---|---|
committer | Ash Ward <ash@netality.com> | 2011-12-01 17:10:48 +0000 |
commit | 5c97bc699ff62259a15ec9fe37278aab12d4b2b1 (patch) | |
tree | 94ed3257782b2ad63a92dcb824eb130fe617ae65 /mod/messages/start.php | |
parent | fec50c64932a7b30606d14fc0a8feb6a22793688 (diff) | |
download | elgg-5c97bc699ff62259a15ec9fe37278aab12d4b2b1.tar.gz elgg-5c97bc699ff62259a15ec9fe37278aab12d4b2b1.tar.bz2 |
Fixes #4170: Messages icon on top bar doesn't have a title attribute
(tooltip)
Diffstat (limited to 'mod/messages/start.php')
-rw-r--r-- | mod/messages/start.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/messages/start.php b/mod/messages/start.php index e4ef4d43a..1a2709324 100644 --- a/mod/messages/start.php +++ b/mod/messages/start.php @@ -125,11 +125,13 @@ function messages_notifier() { if (elgg_is_logged_in()) { $class = "elgg-icon elgg-icon-mail"; $text = "<span class='$class'></span>"; - + $tooltip = elgg_echo("messages"); + // get unread messages $num_messages = (int)messages_count_unread(); if ($num_messages != 0) { $text .= "<span class=\"messages-new\">$num_messages</span>"; + $tooltip .= " (" . elgg_echo("messages:unreadcount", array($num_messages)) . ")"; } elgg_register_menu_item('topbar', array( @@ -137,6 +139,7 @@ function messages_notifier() { 'href' => 'messages/inbox/' . elgg_get_logged_in_user_entity()->username, 'text' => $text, 'priority' => 600, + 'title' => $tooltip, )); } } |