summaryrefslogtreecommitdiff
path: root/actions/showstream.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-21 07:14:43 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-21 07:14:43 +0000
commit92e2f3babc89863518b8711a1b62661752d806f5 (patch)
tree125858c9f6520508de0fd8e0cf12778d185eb152 /actions/showstream.php
parent27b627c09451c099b18a7cde90f6a028f820046c (diff)
Added @title to user_action inputs and anchor and form legends
Diffstat (limited to 'actions/showstream.php')
-rw-r--r--actions/showstream.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index 6ed6abc9e..76249d14d 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -331,8 +331,9 @@ class ShowstreamAction extends Action
$user = User::staticGet('id', $this->profile->id);
if ($cur && $cur->id != $user->id && $cur->mutuallySubscribed($user)) {
$this->elementStart('li', array('id' => 'user_send-a-message'));
- $this->element('a', array('href' => common_local_url('newmessage', array('to' => $user->id))),
- _('Send a message'));
+ $this->element('a', array('href' => common_local_url('newmessage', array('to' => $user->id)),
+ 'title' => _('Send a direct message to this user')),
+ _('Message'));
$this->elementEnd('li');
if ($user->email && $user->emailnotifynudge) {