summaryrefslogtreecommitdiff
path: root/lib/util.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-03-30 10:17:10 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-03-30 10:17:10 -0400
commit3af66807161628969395bfb65ada38f977c94edf (patch)
tree624adfc53b9c6a1d7391dd28dbe250337308b2b4 /lib/util.php
parentce212c3903cfa7a81aa130dc8d1dff6ae890572e (diff)
add a title to attention notice links
Diffstat (limited to 'lib/util.php')
-rw-r--r--lib/util.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php
index a43666fa5..7b2930914 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -622,9 +622,13 @@ function common_at_link($sender_id, $nickname)
$url = $recipient->profileurl;
}
$xs = new XMLStringer(false);
+ $attrs = array('href' => $url,
+ 'class' => 'url');
+ if (!empty($recipient->fullname)) {
+ $attrs['title'] = $recipient->fullname . ' (' . $recipient->nickname . ')';
+ }
$xs->elementStart('span', 'vcard');
- $xs->elementStart('a', array('href' => $url,
- 'class' => 'url'));
+ $xs->elementStart('a', $attrs);
$xs->element('span', 'fn nickname', $nickname);
$xs->elementEnd('a');
$xs->elementEnd('span');