]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
show the full name for likes
authorEvan Prodromou <evan@status.net>
Thu, 21 Apr 2011 16:00:10 +0000 (12:00 -0400)
committerEvan Prodromou <evan@status.net>
Thu, 21 Apr 2011 16:00:10 +0000 (12:00 -0400)
lib/threadednoticelist.php

index fc212a52397ead40bf120ac40a8c28008eb35542..72b8356b6cea33322d312195681c2e865077a7ac 100644 (file)
@@ -410,10 +410,9 @@ abstract class NoticeListActorsItem extends NoticeListItem
             } else {
                 $profile = Profile::staticGet('id', $id);
                 if ($profile) {
-                    $links[] = sprintf('<a href="%s" title="%s">%s</a>',
+                    $links[] = sprintf('<a href="%s">%s</a>',
                                        htmlspecialchars($profile->profileurl),
-                                       htmlspecialchars($profile->getBestName()),
-                                       htmlspecialchars($profile->nickname));
+                                       htmlspecialchars($profile->getBestName()));
                 }
             }
         }