aboutsummaryrefslogtreecommitdiff
path: root/mod/messages/start.php
diff options
context:
space:
mode:
authorAsh Ward <ash@netality.com>2011-12-01 17:03:04 +0000
committerCash Costello <cash.costello@gmail.com>2011-12-02 07:15:33 -0500
commit3e1698928137fbf651f82e7e784252ea69dffa7b (patch)
tree50b2eaeaed11c43a06c9d3af7724797e4674a5df /mod/messages/start.php
parent55352776b2d8ef72d59c825ec02b19df407d11bb (diff)
downloadelgg-3e1698928137fbf651f82e7e784252ea69dffa7b.tar.gz
elgg-3e1698928137fbf651f82e7e784252ea69dffa7b.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.php5
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,
));
}
}